1 | {
|
2 | "rules": {
|
3 | "class-name": true,
|
4 | "comment-format": [true, "check-space"],
|
5 | "indent": [true, "spaces"],
|
6 | "no-duplicate-variable": true,
|
7 | "no-eval": true,
|
8 | "no-internal-module": true,
|
9 | "no-trailing-whitespace": true,
|
10 | "no-var-keyword": true,
|
11 | "one-line": [true, "check-open-brace", "check-whitespace"],
|
12 | "quotemark": [true, "double"],
|
13 | "semicolon": true,
|
14 | "triple-equals": [true, "allow-null-check"],
|
15 | "typedef-whitespace": [true, {
|
16 | "call-signature": "nospace",
|
17 | "index-signature": "nospace",
|
18 | "parameter": "nospace",
|
19 | "property-declaration": "nospace",
|
20 | "variable-declaration": "nospace"
|
21 | }],
|
22 | "variable-name": [true, "ban-keywords"],
|
23 | "whitespace": [true,
|
24 | "check-branch",
|
25 | "check-decl",
|
26 | "check-operator",
|
27 | "check-separator",
|
28 | "check-type"
|
29 | ]
|
30 | },
|
31 | "jsRules": {
|
32 | "indent": [true, "spaces"],
|
33 | "no-duplicate-variable": true,
|
34 | "no-eval": true,
|
35 | "no-trailing-whitespace": true,
|
36 | "one-line": [true, "check-open-brace", "check-whitespace"],
|
37 | "quotemark": [true, "double"],
|
38 | "semicolon": false,
|
39 | "triple-equals": [true, "allow-null-check"],
|
40 | "variable-name": [true, "ban-keywords"],
|
41 | "whitespace": [true,
|
42 | "check-branch",
|
43 | "check-decl",
|
44 | "check-operator",
|
45 | "check-separator",
|
46 | "check-type"
|
47 | ]
|
48 | }
|
49 | }
|