|
1 | 1 | {
|
2 | 2 | "rulesDirectory": "built/local/tslint",
|
3 | 3 | "rules": {
|
4 |
| - "no-bom": true, |
| 4 | + "boolean-trivia": true, |
5 | 5 | "class-name": true,
|
6 | 6 | "comment-format": [true,
|
7 | 7 | "check-space"
|
8 | 8 | ],
|
9 | 9 | "indent": [true,
|
10 | 10 | "spaces"
|
11 | 11 | ],
|
| 12 | + "jsdoc-format": true, |
12 | 13 | "linebreak-style": [true, "CRLF"],
|
| 14 | + "next-line": [true, |
| 15 | + "check-catch", |
| 16 | + "check-else" |
| 17 | + ], |
| 18 | + "no-bom": true, |
| 19 | + "no-in-operator": true, |
| 20 | + "no-increment-decrement": true, |
| 21 | + "no-inferrable-types": true, |
| 22 | + "no-internal-module": true, |
| 23 | + "no-null-keyword": true, |
| 24 | + "no-switch-case-fall-through": true, |
| 25 | + "no-trailing-whitespace": [true, "ignore-template-strings"], |
| 26 | + "no-type-assertion-whitespace": true, |
| 27 | + "no-var-keyword": true, |
| 28 | + "object-literal-surrounding-space": true, |
13 | 29 | "one-line": [true,
|
14 | 30 | "check-open-brace",
|
15 | 31 | "check-whitespace"
|
16 | 32 | ],
|
17 |
| - "no-var-keyword": true, |
| 33 | + "prefer-const": true, |
18 | 34 | "quotemark": [true,
|
19 | 35 | "double",
|
20 | 36 | "avoid-escape"
|
21 | 37 | ],
|
22 | 38 | "semicolon": [true, "always", "ignore-bound-class-methods"],
|
23 |
| - "whitespace": [true, |
24 |
| - "check-branch", |
25 |
| - "check-decl", |
26 |
| - "check-operator", |
27 |
| - "check-module", |
28 |
| - "check-separator", |
29 |
| - "check-type" |
30 |
| - ], |
| 39 | + "triple-equals": true, |
| 40 | + "type-operator-spacing": true, |
31 | 41 | "typedef-whitespace": [
|
32 | 42 | true,
|
33 | 43 | {
|
|
45 | 55 | "variable-declaration": "onespace"
|
46 | 56 | }
|
47 | 57 | ],
|
48 |
| - "next-line": [true, |
49 |
| - "check-catch", |
50 |
| - "check-else" |
51 |
| - ], |
52 |
| - "no-internal-module": true, |
53 |
| - "no-trailing-whitespace": [true, "ignore-template-strings"], |
54 |
| - "no-inferrable-types": true, |
55 |
| - "no-null-keyword": true, |
56 |
| - "boolean-trivia": true, |
57 |
| - "type-operator-spacing": true, |
58 |
| - "prefer-const": true, |
59 |
| - "no-increment-decrement": true, |
60 |
| - "object-literal-surrounding-space": true, |
61 |
| - "no-type-assertion-whitespace": true, |
62 |
| - "no-in-operator": true, |
63 |
| - "no-switch-case-fall-through": true, |
64 |
| - "triple-equals": true, |
65 |
| - "jsdoc-format": true |
66 |
| - } |
| 58 | + "whitespace": [true, |
| 59 | + "check-branch", |
| 60 | + "check-decl", |
| 61 | + "check-operator", |
| 62 | + "check-module", |
| 63 | + "check-separator", |
| 64 | + "check-type" |
| 65 | + ] |
| 66 | + } |
67 | 67 | }
|
0 commit comments