-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
50 lines (49 loc) · 1.01 KB
/
.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
43
44
45
46
47
48
49
50
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["react"],
"env": {
"node": true,
"es6": true,
"mocha": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"no-console": 1,
"comma-spacing": 2,
"eol-last": 2,
"eqeqeq": 2,
"indent": [2, "tab", { "SwitchCase": 1 }],
"new-parens": 2,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-ex-assign": 2,
"no-fallthrough": 2,
"no-invalid-this": 2,
"no-multiple-empty-lines": [2, {"max": 1}],
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unreachable": 2,
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}],
"prefer-const": 2,
"quotes": [2, "single", "avoid-escape"],
"semi": 2,
"keyword-spacing": 2,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-infix-ops": 2,
"strict": [2, "global"],
"valid-typeof": 2
}
}