-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
88 lines (88 loc) · 1.7 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"parser": "babel-eslint",
"extends": ["eslint:recommended"],
"plugins": ["prettier", "babel"],
"root": true,
"env": {
"browser": true,
"es6": true
},
"globals": {
"describe": false,
"it": false,
"define": false,
"require": false,
"ok": false,
"module": false,
"expect": false,
"test": false,
"asyncTest": false,
"equal": false,
"notEqual": false,
"strictEqual": false,
"notStrictEqual": false,
"start": false,
"deepEqual": false,
"Uint8Array": false,
"Uint8ClampedArray": false,
"Uint16Array": false,
"Uint32Array": false,
"Float32Array": false,
"Float64Array": false,
"Int8Array": false,
"Int16Array": false,
"Int32Array": false,
"ArrayBuffer": false
},
"rules": {
"no-debugger": "error",
"no-unsafe-negation": "error",
"brace-style": [
"error",
"1tbs",
{
"allowSingleLine": true
}
],
"linebreak-style": ["error", "unix"],
"object-property-newline": [
"error",
{
"allowMultiplePropertiesPerLine": true
}
],
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"no-bitwise": 0,
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"no-use-before-define": [
2,
{
"functions": false
}
],
"eol-last": 2,
"new-cap": 0,
"no-caller": 2,
"no-multi-str": 0,
"no-redeclare": ["error"],
"comma-style": [2, "last"],
"dot-notation": 0,
"no-empty": 0,
"no-useless-escape": 0,
"no-console": 0,
"no-constant-condition": 0,
"semi": ["error", "never"]
}
}