generated from demiryasinoruc/vue-chrome-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
50 lines (50 loc) · 1.24 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
{
"env": {
"browser": true,
"es6": true,
"node": true,
"commonjs": true
},
"extends": ["plugin:vue/recommended", "prettier", "plugin:json/recommended"],
"globals": {
"Vue": true,
"chrome": true,
"document": true,
"window": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
}
},
"plugins": ["vue"],
"rules": {
"default-case": "off",
"func-names": "off",
"guard-for-in": "off",
"import/prefer-default-export": "off",
"linebreak-style": "off",
"no-alert": "off",
"no-await-in-loop": "off",
"no-console": "off",
"no-continue": "off",
"no-multi-assign": "off",
"no-nested-ternary": "off",
"no-plusplus": "off",
"no-use-before-define": "off",
"no-restricted-syntax": "off",
"no-restricted-globals": "off",
"no-unneeded-ternary": "off",
"radix": "off",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off",
"vue/no-template-shadow": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
"arrow-body-style": "off",
"eqeqeq": "off"
}
}