代码拉取完成,页面将自动刷新
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
'vue/setup-compiler-macros': true // 开启setup语法糖环境
},
globals: {
defineOptions: true
},
extends: [
'plugin:vue/vue3-essential',
'plugin:@typescript-eslint/recommended',
'standard-with-typescript',
'plugin:prettier/recommended',
'plugin:json/recommended',
'./.eslintrc-auto-import.json'
],
overrides: [],
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 13,
sourceType: 'module',
project: ['tsconfig.json', './tsconfig.node.json'],
extraFileExtensions: ['.vue'],
parser: '@typescript-eslint/parser'
},
plugins: ['vue', '@typescript-eslint'],
rules: {
semi: [2, 'never'], // 禁止尾部使用分号“ ; ”
'no-var': 'error', // 禁止使用 var
'no-unused-vars': 'off',
'no-mixed-spaces-and-tabs': 'error', // 不能空格与tab混用
quotes: [2, 'single'], // 使用单引号
'vue/html-closing-bracket-newline': 'off', // 不强制换行
'vue/singleline-html-element-content-newline': 'off', // 不强制换行
'@typescript-eslint/promise-function-async': 'off',
'@typescript-eslint/no-explicit-any': ['off'],
'vue/multi-word-component-names': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/restrict-plus-operands': 'off', // 关闭操作符左右都要类型一样
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'vue/max-attributes-per-line': [
'error',
{
singleline: { max: 5 },
multiline: { max: 5 }
}
], // vue template模板元素第一行最多5个属性
'@typescript-eslint/ban-types': [
'error',
{
extendDefaults: true,
types: {
'{}': false
}
}
]
// 其它的规则可以去eslint查看,根据自己需要进行添加
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。