-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathlang-vue.eslintrc.js
51 lines (51 loc) · 1.42 KB
/
lang-vue.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
module.exports = {
extends: [
'plugin:vue/recommended'
],
plugins: [
'vue'
],
rules: {
'vue/max-attributes-per-line': [2, {
singleline: 100,
multiline: {
max: 1,
allowFirstLine: false
}
}],
'vue/require-default-prop': 0,
'vue/singleline-html-element-content-newline': 'off',
'vue/no-v-html': 'off',
'vue/multiline-html-element-content-newline': 'off',
'vue/name-property-casing': ['error', 'PascalCase'],
'vue/html-indent': [2, 4],
'vue/valid-template-root': [0],
'vue/html-self-closing': ['error', {
html: {
void: 'always',
normal: 'always',
component: 'always'
},
svg: 'always',
math: 'always'
}],
'vue/arrow-spacing': [2, {
before: true,
after: true
}],
'vue/eqeqeq': [2, 'allow-null'],
'vue/key-spacing': [2, {
beforeColon: false,
afterColon: true
}],
'vue/space-infix-ops': [2, { int32Hint: false }],
'vue/space-unary-ops': [2, {
words: true,
nonwords: false
}],
'vue/object-curly-spacing': [2, 'always', {
objectsInObjects: false
}],
'vue/array-bracket-spacing': [2, 'never'],
}
}