-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
37 lines (37 loc) · 871 Bytes
/
.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
// !minifyOnSave
// minifyOnSave: false
module.exports = {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": false,
"modules": false,
"arrowFunctions": false,
"classes": false,
"spread": false,
"impliedStrict": true
},
"env": {
"browser": true,
"jquery": true,
},
"extends": "airbnb",
"installedESLint": true,
"rules": {
// "indent": [ "error", "tab" ],
// "linebreak-style": [ "error", "windows" ],
// "quotes": [ "error", "single" ],
// "semi": [ "error", "always" ]
// "newline-per-chained-call": ["off"],
"no-var": ["off"],
"max-len": ["off", 100, 4],
// "radix": ["off"],
// "prefer-template": ["off"],
"prefer-arrow-callback": ["off"],
"func-names": ["off"],
// "no-use-before-define": ["off"]
},
"globals": {
"Materialize": true,
"toggleFullScreen": false
}
};