UNPKG

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