-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
74 lines (70 loc) · 1.63 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
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/essential',
'@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'comma-dangle': [2, 'only-multiline'],
'prefer-destructuring': 'off',
'arrow-parens': 'off',
'arrow-body-style': 'off',
'no-unused-expressions': 'off',
'no-unused-vars': 'off',
'curly': 'off',
'linebreak-style': 'off',
'space-before-function-paren': 'off',
'object-curly-spacing': 'off',
'import/no-dynamic-require': 'off',
'consistent-return': 'off',
'no-prototype-builtins': 'off',
'no-plusplus': 'off',
'no-return-await': 'off',
'no-shadow': 'off',
'global-require': 'off',
'func-names': 'off',
'no-param-reassign': 'off',
'vue/valid-v-on': 'off',
'semi': [2, 'always'],
'indent': ['error', 2],
'vue/script-indent': ['error', 2, {
'baseIndent': 1,
'switchCase': 1,
'ignores': []
}],
'vue/html-self-closing': ['error', {
'html': {
'void': 'always',
'normal': 'any',
'component': 'any'
}
}],
// allow optionalDependencies
'import/no-extraneous-dependencies': [
'error', {
'optionalDependencies': ['test/unit/index.js']
}]
},
'overrides': [
{
'files': ['*.vue'],
'rules': {
'indent': 'off'
}
},
{
'files': ['*.js'],
'rules': {
'vue/script-indent': 'off'
}
}
],
'parserOptions': {
'parser': 'babel-eslint'
}
};