-
-
Notifications
You must be signed in to change notification settings - Fork 283
/
.eslintrc.unfixed.yaml
48 lines (48 loc) · 1.77 KB
/
.eslintrc.unfixed.yaml
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
rules:
no-await-in-loop: error
eqeqeq: [warn, smart]
wrap-iife: warn
camelcase: [warn, {properties: never,
allow: [
"l_admin",
"ln_admin",
"l_attributes",
"ln_attributes",
"lp_attributes",
"l_countries",
"ln_countries",
"lp_countries",
"l_history",
"l_instrument_descriptions",
"ln_instrument_descriptions",
"lp_instrument_descriptions",
"l_instruments",
"ln_instruments",
"lp_instruments",
"l_languages",
"ln_languages",
"lp_languages",
"l_relationships",
"ln_relationships",
"lp_relationships",
"l_scripts",
"ln_scripts",
"lp_scripts",
"l_statistics",
"ln_statistics",
"lp_statistics",
"N_l",
"N_ln",
"N_lp",
"N_l_statistics",
"N_lp_statistics",
"__webpack_public_path__",
]}]
consistent-this: [warn, self]
sort-keys: [warn, asc, {caseSensitive: false, natural: true}]
no-var: warn
prefer-const: warn
react/no-access-state-in-setstate: error
react/no-multi-comp: [warn, {ignoreStateless: true}]
react/no-render-return-value: warn
react/jsx-no-bind: [warn, {ignoreDOMComponents: true}]