-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.js
48 lines (42 loc) · 888 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
44
45
46
47
48
// http://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/strongly-recommended',
'eslint:recommended'
],
rules: {
'generator-star-spacing': 0,
'arrow-parens': 0,
'prefer-const': 2,
'no-trailing-spaces': 'error',
'no-debugger': 0,
'no-extra-semi': 'error',
semi: [
'error',
'never'
],
'no-var': 'error',
'vue/attributes-order': 'error',
'vue/no-confusing-v-for-v-if': 'error',
'vue/no-v-html': 'error',
'vue/order-in-components': 'error',
'vue/this-in-template': 'error',
'vue/script-indent': 'error'
},
parserOptions: {
parser: 'babel-eslint'
},
overrides: [
{
files: ['*.vue'],
rules: {
indent: 'off',
'vue/script-indent': ['error', 2, { baseIndent: 1 }]
}
}
]
}