-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
57 lines (55 loc) · 1.7 KB
/
.eslintrc.json
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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:vue/recommended", "plugin:vue/strongly-recommended", "plugin:vue/essential"],
"parserOptions": {
"parser": "@babel/eslint-parser",
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"indent": [
0,
2,
{ "SwitchCase": 1 }
],
"no-extra-semi": "warn",
"no-unused-vars": "warn",
"no-trailing-spaces": 0,
"no-case-declarations": "warn",
"no-unreachable": "warn",
"no-multiple-empty-lines": 0,
"prefer-const": 0,
"space-infix-ops": "warn",
"camelcase": 0,
"no-console": 0,
"linebreak-style": 0,
"quotes": 0,
"semi": 0,
"vue/require-prop-types": 0,
"vue/no-reserved-keys": 0,
"vue/order-in-components": 0,
"vue/require-default-prop": 0,
"vue/return-in-computed-property": 0,
"vue/max-attributes-per-line": 0,
"vue/attributes-order": 0,
"vue/singleline-html-element-content-newline": 0,
"vue/mustache-interpolation-spacing": 0,
"vue/html-self-closing": 0,
"vue/html-indent": 0,
"vue/multiline-html-element-content-newline": 0,
"vue/no-multi-spaces": 0,
"vue/html-quotes": 0,
"vue/attribute-hyphenation": 0,
"vue/html-closing-bracket-newline": 0,
"vue/multi-word-component-names": 0,
"vue/component-tags-order": 0,
"vue/first-attribute-linebreak": 0
}
}