1 | {
|
2 | "rules": {
|
3 | "class-name": true,
|
4 | "indent": [
|
5 | true,
|
6 | "spaces"
|
7 | ],
|
8 | "no-duplicate-variable": true,
|
9 | "no-eval": true,
|
10 | "no-internal-module": true,
|
11 | "no-trailing-whitespace": true,
|
12 | "no-var-keyword": true,
|
13 | "one-line": [
|
14 | true,
|
15 | "check-open-brace",
|
16 | "check-whitespace"
|
17 | ],
|
18 | "quotemark": [
|
19 | true,
|
20 | "single",
|
21 | "avoid-escape"
|
22 | ],
|
23 | "semicolon": [
|
24 | true,
|
25 | "always"
|
26 | ],
|
27 | "trailing-comma": [
|
28 | true,
|
29 | "multiline"
|
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 | }
|