UNPKG

1.41 kBJSONView Raw
1{
2 "rules": {
3 "arrow-parens": true,
4 "class-name": true,
5 "indent": [
6 true,
7 "spaces"
8 ],
9 "prefer-const": true,
10 "no-duplicate-variable": true,
11 "no-eval": true,
12 "no-internal-module": true,
13 "no-trailing-whitespace": true,
14 "no-var-keyword": true,
15 "one-line": [
16 true,
17 "check-open-brace",
18 "check-whitespace"
19 ],
20 "quotemark": [
21 true,
22 "single",
23 "avoid-escape"
24 ],
25 "semicolon": [
26 true,
27 "always"
28 ],
29 "trailing-comma": [
30 true,
31 "multiline"
32 ],
33 "triple-equals": [
34 true,
35 "allow-null-check"
36 ],
37 "typedef-whitespace": [
38 true,
39 {
40 "call-signature": "nospace",
41 "index-signature": "nospace",
42 "parameter": "nospace",
43 "property-declaration": "nospace",
44 "variable-declaration": "nospace"
45 }
46 ],
47 "variable-name": [
48 true,
49 "ban-keywords"
50 ],
51 "whitespace": [
52 true,
53 "check-branch",
54 "check-decl",
55 "check-operator",
56 "check-separator",
57 "check-type"
58 ]
59 }
60}