-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
43 lines (43 loc) · 956 Bytes
/
.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
module.exports = {
root: true,
env: {
node: true,
},
plugins: ['prettier'],
extends: [
'eslint:recommended',
'plugin:vue/recommended',
'plugin:prettier/recommended',
'prettier',
'prettier/vue'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
quotes: [2, 'single', 'avoid-escape'],
semi: [2, 'never'],
// 'comma-dangle': ['error', 'always-multiline'],
'no-extra-boolean-cast': 'off',
"no-unused-vars": [
1,
{
"ignoreSiblings": true,
"argsIgnorePattern": "res|next|^err"
}
],
'prettier/prettier': [
'error',
{
trailingComma: 'es5',
singleQuote: true,
tabWidth: 2,
semi: false,
printWidth: 100,
},
],
},
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 2017,
},
}