-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
executable file
·42 lines (42 loc) · 1.08 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
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: "babel-eslint"
},
extends: ["eslint:recommended", "plugin:vue/essential"],
rules: {
semi: 0,
"no-unused-vars": [
"error",
{
args: "none",
varsIgnorePattern: "[get|set]PathData"
}
],
"space-before-function-paren": 0,
"no-control-regex": 0,
"no-useless-escape": 0,
"space-before-blocks": 0,
"spaced-comment": 0,
"keyword-spacing": 0,
"no-tabs": 0,
"no-debugger": 0,
"space-infix-ops": 0,
"key-spacing": 0,
"no-console": 0,
"vue/no-debugger": 0,
"vue/multi-word-component-names": 0,
"vue/attributes-order": 0,
"vue/require-v-for-key": 0,
"vue/no-unused-components": 0,
"vue/max-attributes-per-line": 0,
"vue/html-indent": 0,
"vue/attribute-hyphenation": 0,
"operator-linebreak": 0,
"no-ids": 0
}
};