UNPKG

1.18 kBJSONView Raw
1{
2 "exclude": [
3 "node_modules"
4 ],
5 "rules": {
6 "jsx-boolean-value": false,
7 "jsx-curly-spacing": false,
8 "jsx-no-multiline-js": false,
9 "jsx-wrap-multiline": false,
10 "jsx-alignment": false,
11 "jsx-no-lambda": true,
12 "jsx-no-string-ref": false,
13 "class-name": true,
14 "curly": true,
15 "quotemark": [
16 true,
17 "single",
18 "jsx-double",
19 "avoid-escape"
20 ],
21 "max-line-length": [
22 true,
23 120
24 ],
25 "member-ordering": [
26 true,
27 "statics-first"
28 ],
29 "new-parens": true,
30 "no-arg": true,
31 "no-consecutive-blank-lines": true,
32 "no-console": [
33 true,
34 "time",
35 "timeEnd"
36 ],
37 "no-debugger": true,
38 "no-eval": true,
39 "no-internal-module": true,
40 "no-mergeable-namespace": true,
41 "no-switch-case-fall-through": true,
42 "no-trailing-whitespace": true,
43 "no-unused-variable": [
44 true,
45 "react"
46 ],
47 "no-var-keyword": true,
48 "one-variable-per-declaration": [
49 true,
50 "ignore-for-loop"
51 ],
52 "semicolon": false,
53 "triple-equals": [
54 true,
55 "allow-null-check"
56 ],
57 "typedef-whitespace": [
58 true
59 ],
60 "use-isnan": true,
61 "whitespace": [
62 true,
63 "check-branch",
64 "check-decl",
65 "check-operator",
66 "check-type"
67 ]
68 }
69}
\No newline at end of file