forked from goldcoders-corp/vuetified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
74 lines (73 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"extends": [
"plugin:vue/recommended"
],
"settings": {
"html/html-extensions": [
".html"
],
"html/report-bad-indent": "error"
},
"plugins": [
"html"
],
"rules": {
"no-undef": 1,
"eol-last": ["error", "always"],
"linebreak-style": ["error", "unix"],
"comma-dangle": ["error", {
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "ignore"
}],
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "app",
"args": "after-used",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
],
"no-use-before-define": [1, {"functions": true, "classes": true, "variables": true}],
"indent": [
"error",
4
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
]
},
"globals": {
"axios": true,
"Vue": true,
"vm": true,
"route": true,
"App": true,
"AppForm": true,
"AppFormErrors": true,
"moment": true,
"_": true,
"Bus": true,
"jQuery": true,
"$": true
},
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"globalReturn": false,
"impliedStrict": false,
"jsx": false,
"experimentalObjectRestSpread": false,
"allowImportExportEverywhere": false
}
}
}