|
1 | 1 | {
|
| 2 | + "extends": "tslint:recommended", |
2 | 3 | "rulesDirectory": [
|
3 |
| - "node_modules/codelyzer" |
| 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 | + "array-type": false, |
| 8 | + "arrow-parens": false, |
14 | 9 | "deprecation": {
|
15 |
| - "severity": "warn" |
| 10 | + "severity": "warning" |
16 | 11 | },
|
17 |
| - "eofline": true, |
18 |
| - "forin": true, |
19 | 12 | "import-blacklist": [
|
20 | 13 | true,
|
21 | 14 | "rxjs/Rx"
|
22 | 15 | ],
|
23 |
| - "import-spacing": true, |
24 |
| - "indent": [ |
25 |
| - true, |
26 |
| - "spaces" |
27 |
| - ], |
28 |
| - "interface-over-type-literal": true, |
29 |
| - "label-position": true, |
| 16 | + "interface-name": false, |
| 17 | + "max-classes-per-file": false, |
30 | 18 | "max-line-length": [
|
31 | 19 | true,
|
32 | 20 | 140
|
|
43 | 31 | ]
|
44 | 32 | }
|
45 | 33 | ],
|
46 |
| - "no-arg": true, |
47 |
| - "no-bitwise": true, |
| 34 | + "no-consecutive-blank-lines": false, |
48 | 35 | "no-console": [
|
49 | 36 | true,
|
50 | 37 | "debug",
|
|
53 | 40 | "timeEnd",
|
54 | 41 | "trace"
|
55 | 42 | ],
|
56 |
| - "no-construct": true, |
57 |
| - "no-debugger": true, |
58 |
| - "no-duplicate-super": true, |
59 | 43 | "no-empty": false,
|
60 |
| - "no-empty-interface": true, |
61 |
| - "no-eval": true, |
62 | 44 | "no-inferrable-types": [
|
63 | 45 | true,
|
64 | 46 | "ignore-params"
|
65 | 47 | ],
|
66 |
| - "no-misused-new": true, |
67 | 48 | "no-non-null-assertion": true,
|
68 |
| - "no-shadowed-variable": true, |
| 49 | + "no-redundant-jsdoc": true, |
69 | 50 | "no-string-literal": false,
|
70 |
| - "no-string-throw": true, |
71 | 51 | "no-switch-case-fall-through": true,
|
72 |
| - "no-trailing-whitespace": true, |
73 |
| - "no-unnecessary-initializer": true, |
74 |
| - "no-unused-expression": true, |
75 |
| - "no-var-keyword": true, |
76 |
| - "object-literal-sort-keys": false, |
77 |
| - "one-line": [ |
| 52 | + "no-var-requires": false, |
| 53 | + "object-literal-key-quotes": [ |
78 | 54 | true,
|
79 |
| - "check-open-brace", |
80 |
| - "check-catch", |
81 |
| - "check-else", |
82 |
| - "check-whitespace" |
| 55 | + "as-needed" |
83 | 56 | ],
|
| 57 | + "object-literal-sort-keys": false, |
| 58 | + "ordered-imports": false, |
84 | 59 | "prefer-const": true,
|
85 | 60 | "quotemark": [
|
86 | 61 | true,
|
87 | 62 | "single"
|
88 | 63 | ],
|
89 |
| - "radix": true, |
90 |
| - "semicolon": [ |
91 |
| - true, |
92 |
| - "always" |
93 |
| - ], |
94 |
| - "triple-equals": [ |
95 |
| - true, |
96 |
| - "allow-null-check" |
97 |
| - ], |
98 |
| - "typedef-whitespace": [ |
99 |
| - true, |
100 |
| - { |
101 |
| - "call-signature": "nospace", |
102 |
| - "index-signature": "nospace", |
103 |
| - "parameter": "nospace", |
104 |
| - "property-declaration": "nospace", |
105 |
| - "variable-declaration": "nospace" |
106 |
| - } |
107 |
| - ], |
108 |
| - "unified-signatures": true, |
| 64 | + "trailing-comma": false, |
| 65 | + "component-class-suffix": true, |
| 66 | + "contextual-lifecycle": true, |
| 67 | + "directive-class-suffix": true, |
| 68 | + "no-conflicting-lifecycle": true, |
109 | 69 | "variable-name": false,
|
110 |
| - "whitespace": [ |
111 |
| - true, |
112 |
| - "check-branch", |
113 |
| - "check-decl", |
114 |
| - "check-operator", |
115 |
| - "check-separator", |
116 |
| - "check-type" |
117 |
| - ], |
118 |
| - "no-output-on-prefix": true, |
119 |
| - "no-inputs-metadata-property": true, |
120 |
| - "no-outputs-metadata-property": true, |
121 |
| - "no-host-metadata-property": true, |
| 70 | + "no-host-metadata-property": true, |
122 | 71 | "no-input-rename": true,
|
| 72 | + "no-inputs-metadata-property": true, |
| 73 | + "no-output-native": true, |
| 74 | + "no-output-on-prefix": true, |
123 | 75 | "no-output-rename": true,
|
| 76 | + "no-outputs-metadata-property": true, |
| 77 | + "template-banana-in-box": true, |
| 78 | + "template-no-negated-async": true, |
124 | 79 | "use-lifecycle-interface": true,
|
125 |
| - "use-pipe-transform-interface": true, |
126 |
| - "component-class-suffix": true, |
127 |
| - "directive-class-suffix": true |
| 80 | + "use-pipe-transform-interface": true |
128 | 81 | }
|
129 | 82 | }
|
0 commit comments