UNPKG

1.35 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 "no-duplicate-variable": true,
13 "no-eval": true,
14 "no-internal-module": true,
15 "no-trailing-whitespace": true,
16 "no-unsafe-finally": true,
17 "no-var-keyword": true,
18 "one-line": [
19 true,
20 "check-open-brace",
21 "check-whitespace"
22 ],
23 "quotemark": [
24 true,
25 "single"
26 ],
27 "semicolon": [
28 true,
29 "always"
30 ],
31 "triple-equals": [
32 true,
33 "allow-null-check"
34 ],
35 "typedef-whitespace": [
36 true,
37 {
38 "call-signature": "nospace",
39 "index-signature": "nospace",
40 "parameter": "nospace",
41 "property-declaration": "nospace",
42 "variable-declaration": "nospace"
43 }
44 ],
45 "variable-name": [
46 true,
47 "ban-keywords"
48 ],
49 "whitespace": [
50 true,
51 "check-branch",
52 "check-decl",
53 "check-operator",
54 "check-separator",
55 "check-type"
56 ]
57 }
58}
\No newline at end of file