|
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-key-quotes": false, |
| 67 | + "object-literal-shorthand": false, |
78 | 68 | "object-literal-sort-keys": false, |
79 | 69 | "one-line": [ |
80 | 70 | true, |
|
83 | 73 | "check-else", |
84 | 74 | "check-whitespace" |
85 | 75 | ], |
86 | | - "prefer-const": true, |
| 76 | + "one-variable-per-declaration": false, |
| 77 | + "only-arrow-functions": false, |
| 78 | + "ordered-imports": false, |
| 79 | + "prefer-for-of": false, |
87 | 80 | "quotemark": [ |
88 | 81 | true, |
89 | 82 | "single" |
90 | 83 | ], |
91 | | - "radix": true, |
92 | | - "semicolon": [ |
93 | | - true, |
94 | | - "always" |
95 | | - ], |
96 | | - "triple-equals": [ |
97 | | - true, |
98 | | - "allow-null-check" |
99 | | - ], |
| 84 | + "space-before-function-paren": false, |
| 85 | + "trailing-comma": false, |
100 | 86 | "typedef-whitespace": [ |
101 | 87 | true, |
102 | 88 | { |
|
107 | 93 | "variable-declaration": "nospace" |
108 | 94 | } |
109 | 95 | ], |
110 | | - "unified-signatures": true, |
| 96 | + "use-isnan": false, |
111 | 97 | "variable-name": false, |
112 | 98 | "whitespace": [ |
113 | 99 | true, |
|
0 commit comments