代码拉取完成,页面将自动刷新
/** vue3-ts eslint config*/
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true,
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
plugins: ['html'],
extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-recommended', 'plugin:prettier/recommended'],
rules: {
'prettier/prettier': 1,
'@typescript-eslint/no-explicit-any': 1,
'@typescript-eslint/no-inferrable-types': 1, // let a:string = 's'; 提示去掉类型声明
'@typescript-eslint/no-empty-function': 1, // 不能有空方法,改为1警告
'@typescript-eslint/no-var-requires': 0, // 解决vue.config.js中require语法的报错
'@typescript-eslint/no-unused-vars': [1, { varsIgnorePattern: '^h$' }], // 用于取消tsx,jsx import { h } from 'vue 中提示h函数未使用的问题
// 'spaced-comment': 1, // 注释斜杠后空格
eqeqeq: 1, // 使用 ===
'dot-notation': 1, // 强制使用.不用[]
// 'no-debugger': 0,
// 'no-console': 0,
// 'no-undef': 0,
'no-new-object': 1, // 使用字面量创建对象 非new Object()
'object-shorthand': 1, // 对象方法属性值缩写
'vue/multi-word-component-names': 0,
// 'vue/attribute-hyphenation': [
// 'warn',
// 'never',
// {
// ignore: ['custom-prop'],
// },
// ],
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。