-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
91 lines (90 loc) · 2.52 KB
/
.eslintrc.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
module.exports = {
root: true,
env: {
node: true
},
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/prettier'],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-undef': 1,
'vue/custom-event-name-casing': 'off',
'no-use-before-define': 'off',
// @fixable function 的小括号之前必须要有空格
'space-before-function-paren': [
'error',
{
anonymous: 'ignore',
named: 'never',
asyncArrow: 'always'
}
],
// 要求使用剩余参数 而不是arguments
'prefer-rest-params': 'warn',
'comma-dangle': ['error', 'never'],
'prettier/prettier': [
'warn',
// prettier规则 同.prettierrc.json中的配置
{
printWidth: 100,
tabWidth: 2,
useTabs: false,
semi: false,
vueIndentScriptAndStyle: false,
singleQuote: true,
quoteProps: 'as-needed',
bracketSpacing: true,
trailingComma: 'none',
jsxBracketSameLine: false,
jsxSingleQuote: false,
arrowParens: 'avoid',
insertPragma: false,
requirePragma: false,
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'lf',
rangeStart: 0,
eslintIntegration: false,
overrides: [
{
files: '*.md',
options: {
tabWidth: 2
}
}
]
},
{
// 发现一个问题,即使通过这配置了允许使用外部prettier配置文件作为配置
// 有的配置参数在.prettierrc.json中配置后 不会生效 还得在当前配置文件中做声明
usePrettierrc: false
}
],
// @fixable 代码块如果在一行内,那么大括号内的首尾必须有空格,比如 function () { alert('Hello') }
'block-spacing': ['error', 'always'],
// @fixable 对象字面量只有一行时,大括号内的首尾必须有空格
'object-curly-spacing': [
'error',
'always',
{
arraysInObjects: true,
objectsInObjects: true
}
],
// @fixable 禁止出现超过三行的连续空行
'no-multiple-empty-lines': [
'error',
{
max: 2,
maxEOF: 1,
maxBOF: 1
}
],
'vue/no-unused-vars': 'warn',
'vue/no-unused-components': 'warn',
'no-unused-vars': 'warn'
}
}