1 | {
|
2 | "rules": {
|
3 | "class-name": true,
|
4 | "comment-format": [true, "check-space"],
|
5 | "indent": [false],
|
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, "single"],
|
13 | "semicolon": [true, "always"],
|
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 | } |
\ | No newline at end of file |