Skip to content

Commit 3e297f6

Browse files
committed
Update before first split of constants
1 parent 18440c7 commit 3e297f6

6 files changed

+755
-11145
lines changed

Diff for: .eslintrc.yaml

+22-6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ rules:
66
no-else-return: 0
77
no-underscore-dangle: 0
88
nonblock-statement-body-position: 0
9+
# curly checks for all {} after if for instance
910
curly: 0
1011
no-return-assign: 0
1112
consistent-return: 0
@@ -14,11 +15,27 @@ rules:
1415
no-nested-ternary: 0
1516
camelcase: 0
1617
# Added for convenience to check eslint...
17-
max-len: 0
18+
# Settings handled:
19+
max-len:
20+
- warn
21+
- code: 220
22+
ignoreComments: true
23+
eqeqeq: 1
24+
brace-style: 1
25+
# - Prevent warnings in logging and multiple params on one line
26+
function-call-argument-newline: 0
27+
function-paren-newline: 0
28+
# - Allow i++ / i-- in for loops
29+
no-plusplus:
30+
- warn
31+
- allowForLoopAfterthoughts: true
32+
no-irregular-whitespace: 1
33+
no-bitwise:
34+
- warn
35+
- allow:
36+
- "~"
37+
# Settings disabled for now, until handled
1838
no-console: 0
19-
no-plusplus: 0
20-
eqeqeq: 0
21-
no-irregular-whitespace: 0
2239
no-restricted-globals: 0
2340
no-undef: 0
2441
no-unused-vars: 0
@@ -30,7 +47,6 @@ rules:
3047
block-scoped-var: 0
3148
max-classes-per-file: 0
3249
no-new-func: 0
33-
no-bitwise: 0
3450
no-prototype-builtins: 0
3551
no-var: 0
3652
vars-on-top: 0
@@ -41,7 +57,6 @@ rules:
4157
prefer-const: 0
4258
no-redeclare: 0
4359
no-setter-return: 0
44-
brace-style: 0
4560
no-lonely-if: 0
4661
operator-assignment: 0
4762
no-shadow: 0
@@ -55,6 +70,7 @@ rules:
5570
import/no-unresolved: 0
5671
no-template-curly-in-string: 0
5772
import/extensions: 0
73+
5874
globals:
5975
window: true
6076
Event: true

0 commit comments

Comments
 (0)