|
1 | 1 | {
|
| 2 | + "extends": "tslint:recommended", |
2 | 3 | "rulesDirectory": [
|
3 | 4 | "codelyzer"
|
4 | 5 | ],
|
5 | 6 | "rules": {
|
6 |
| - "arrow-return-shorthand": true, |
7 |
| - "callable-types": true, |
8 |
| - "class-name": true, |
9 |
| - "comment-format": [ |
10 |
| - true, |
11 |
| - "check-space" |
12 |
| - ], |
13 |
| - "curly": true, |
| 7 | + "adjacent-overload-signatures": false, |
| 8 | + "align": false, |
| 9 | + "array-type": false, |
| 10 | + "arrow-parens": false, |
| 11 | + "ban-types": false, |
14 | 12 | "deprecation": {
|
15 | 13 | "severity": "warn"
|
16 | 14 | },
|
17 |
| - "eofline": true, |
18 |
| - "forin": true, |
| 15 | + "function-constructor": false, |
19 | 16 | "import-blacklist": [
|
20 | 17 | true,
|
21 | 18 | "rxjs/Rx"
|
22 | 19 | ],
|
23 |
| - "import-spacing": true, |
24 |
| - "indent": [ |
25 |
| - true, |
26 |
| - "spaces" |
27 |
| - ], |
28 |
| - "interface-over-type-literal": true, |
29 |
| - "label-position": true, |
| 20 | + "interface-name": false, |
| 21 | + "jsdoc-format": false, |
| 22 | + "max-classes-per-file": false, |
30 | 23 | "max-line-length": [
|
31 | 24 | true,
|
32 | 25 | 140
|
|
43 | 36 | ]
|
44 | 37 | }
|
45 | 38 | ],
|
46 |
| - "no-arg": true, |
47 |
| - "no-bitwise": true, |
| 39 | + "new-parens": false, |
| 40 | + "no-angle-bracket-type-assertion": false, |
| 41 | + "no-conditional-assignment": false, |
| 42 | + "no-consecutive-blank-lines": false, |
48 | 43 | "no-console": [
|
49 | 44 | true,
|
50 | 45 | "debug",
|
|
53 | 48 | "timeEnd",
|
54 | 49 | "trace"
|
55 | 50 | ],
|
56 |
| - "no-construct": true, |
57 |
| - "no-debugger": true, |
58 |
| - "no-duplicate-super": true, |
59 | 51 | "no-empty": false,
|
60 |
| - "no-empty-interface": true, |
61 |
| - "no-eval": true, |
62 | 52 | "no-inferrable-types": [
|
63 | 53 | true,
|
64 | 54 | "ignore-params"
|
65 | 55 | ],
|
66 |
| - "no-misused-new": true, |
| 56 | + "no-namespace": false, |
67 | 57 | "no-non-null-assertion": true,
|
68 | 58 | "no-redundant-jsdoc": true,
|
69 |
| - "no-shadowed-variable": true, |
| 59 | + "no-reference": false, |
| 60 | + "no-reference-import": false, |
70 | 61 | "no-string-literal": false,
|
71 |
| - "no-string-throw": true, |
72 | 62 | "no-switch-case-fall-through": true,
|
73 |
| - "no-trailing-whitespace": true, |
74 |
| - "no-unnecessary-initializer": true, |
75 |
| - "no-unused-expression": true, |
| 63 | + "no-unsafe-finally": false, |
76 | 64 | "no-use-before-declare": true,
|
77 |
| - "no-var-keyword": true, |
| 65 | + "no-var-requires": false, |
| 66 | + "object-literal-shorthand": false, |
78 | 67 | "object-literal-sort-keys": false,
|
79 | 68 | "one-line": [
|
80 | 69 | true,
|
|
83 | 72 | "check-else",
|
84 | 73 | "check-whitespace"
|
85 | 74 | ],
|
86 |
| - "prefer-const": true, |
| 75 | + "one-variable-per-declaration": false, |
| 76 | + "only-arrow-functions": false, |
| 77 | + "ordered-imports": false, |
| 78 | + "prefer-for-of": false, |
87 | 79 | "quotemark": [
|
88 | 80 | true,
|
89 | 81 | "single"
|
90 | 82 | ],
|
91 |
| - "radix": true, |
92 |
| - "semicolon": [ |
93 |
| - true, |
94 |
| - "always" |
95 |
| - ], |
96 |
| - "triple-equals": [ |
97 |
| - true, |
98 |
| - "allow-null-check" |
99 |
| - ], |
| 83 | + "space-before-function-paren": false, |
| 84 | + "trailing-comma": false, |
100 | 85 | "typedef-whitespace": [
|
101 | 86 | true,
|
102 | 87 | {
|
|
107 | 92 | "variable-declaration": "nospace"
|
108 | 93 | }
|
109 | 94 | ],
|
110 |
| - "unified-signatures": true, |
| 95 | + "use-isnan": false, |
111 | 96 | "variable-name": false,
|
112 | 97 | "whitespace": [
|
113 | 98 | true,
|
|
0 commit comments