forked from timgabets/electron-atm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
42 lines (42 loc) · 835 Bytes
/
.eslintrc
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
{
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jquery": true
},
"rules": {
"quotes": [1, "single"],
"no-console": 1,
"no-debugger": 1,
"no-var": 1,
"semi": [1, "always"],
"no-trailing-spaces": 0,
"eol-last": 0,
"no-unused-vars": 0,
"no-underscore-dangle": 0,
"no-alert": 0,
"no-lone-blocks": 0,
"indent": ["warn", 2],
"eqeqeq": 2,
"no-implicit-globals": 2,
"radix": 2,
"strict": 2,
"brace-style": 1,
"comma-style": 1,
"key-spacing": 2,
"linebreak-style": 1,
"space-infix-ops": 1,
"arrow-spacing": 1,
"switch-colon-spacing": 1,
}
}