-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.js
48 lines (48 loc) · 1.24 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
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',
'vue/attribute-hyphenation': 0,
'vue/html-closing-bracket-newline': 0,
'vue/html-closing-bracket-spacing': ['error', { 'selfClosingTag': 'always' }],
'vue/html-quotes': ['error', 'double'],
'vue/mustache-interpolation-spacing': ['error', 'always'],
'vue/name-property-casing': ['error', 'PascalCase'],
'vue/no-parsing-error': [2, { 'x-invalid-end-tag': false }],
'vue/order-in-components': ['error', {
'order': [
'el',
'name',
'parent',
'functional',
['delimiters', 'comments'],
['components', 'directives', 'filters'],
'extends',
'mixins',
'inheritAttrs',
'model',
['props', 'propsData'],
'data',
'computed',
'watch',
'LIFECYCLE_HOOKS',
'methods',
['template', 'render'],
'renderError'
]
}],
'comma-dangle': 0,
'semi': 0
},
parserOptions: {
parser: 'babel-eslint'
}
}