UNPKG

1.84 kBJSONView Raw
1{
2 "rules": {
3 "class-name": true,
4 "comment-format": [
5 true,
6 "check-space"
7 ],
8 "curly": true,
9 "eofline": true,
10 "forin": true,
11 "indent": [
12 true,
13 "spaces"
14 ],
15 "label-position": true,
16 "max-line-length": [
17 true,
18 140
19 ],
20 "member-access": false,
21 "no-arg": true,
22 "no-bitwise": true,
23 "no-console": [
24 true,
25 "debug",
26 "info",
27 "time",
28 "timeEnd",
29 "trace"
30 ],
31 "no-construct": true,
32 "no-debugger": true,
33 "no-duplicate-variable": true,
34 "no-empty": false,
35 "no-eval": true,
36 "no-inferrable-types": true,
37 "no-string-literal": false,
38 "no-switch-case-fall-through": true,
39 "no-trailing-whitespace": true,
40 "no-unused-expression": true,
41 "no-use-before-declare": true,
42 "no-var-keyword": true,
43 "object-literal-sort-keys": false,
44 "one-line": [
45 true,
46 "check-open-brace",
47 "check-catch",
48 "check-else",
49 "check-whitespace"
50 ],
51 "quotemark": [
52 true,
53 "single"
54 ],
55 "radix": true,
56 "semicolon": [
57 true
58 ],
59 "triple-equals": [
60 true,
61 "allow-null-check"
62 ],
63 "typedef-whitespace": [
64 true,
65 {
66 "call-signature": "nospace",
67 "index-signature": "nospace",
68 "parameter": "nospace",
69 "property-declaration": "nospace",
70 "variable-declaration": "nospace"
71 }
72 ],
73 "variable-name": false,
74 "whitespace": [
75 true,
76 "check-branch",
77 "check-decl",
78 "check-operator",
79 "check-separator",
80 "check-type"
81 ],
82
83 "import-destructuring-spacing": true
84 }
85 }