-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
57 lines (57 loc) · 1.24 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
51
52
53
54
55
56
57
{
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6
},
"env": {
"browser": true
},
"rules": {
"curly": 2,
"eqeqeq": 2,
"guard-for-in": 2,
"no-empty-function": 2,
"no-eq-null": 1,
"default-case": 1,
"no-console": 1,
"valid-typeof": 2,
"no-alert": 1,
"no-empty-pattern": 2,
"no-eval": 2,
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-global-assign": 2,
"dot-notation": 2,
"consistent-return": 2,
"no-implied-eval": 2,
"no-multi-spaces": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-redeclare": 2,
"no-return-assign": 2,
"no-script-url": 2,
"no-throw-literal": 2,
"no-useless-concat": 2,
"vars-on-top": 2,
"wrap-iife": 1,
"strict": 1,
"no-delete-var": 2,
"no-shadow-restricted-names": 2,
"no-undefined": 2,
"no-use-before-define": 2,
"camelcase": 1,
"brace-style": 2,
"computed-property-spacing": 1,
"eol-last": 2,
"no-class-assign": 2,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-duplicate-imports": 2,
"prefer-const": 1,
"prefer-rest-params": 2,
"prefer-spread": 2,
"rest-spread-spacing": 2
}
}