eslint代码规范
happylay 🐑 2020-12-30 代码片段eslint
摘要: eslint代码规范 时间: 2020-12-30
# eslint常用规则配置
.eslintrc.js
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/typescript/recommended'
],
parserOptions: {
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// 关闭shims-vue.d.ts警告(处理any可能报错)
'@typescript-eslint/no-explicit-any': ['off'],
// 处理{}可能报错
'object-curly-spacing': [2, 'always', {
objectsInObjects: true
}],
// 处理img标签可能报错
'no-unused-vars': 'off',
'vue/html-self-closing': ['error', {
'html': {
'void': 'always',
'normal': 'never',
'component': 'always'
},
'svg': 'always',
'math': 'always'
}],
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35