]>
Commit | Line | Data |
---|---|---|
44124980 | 1 | { |
c4710631 | 2 | "extends": [ "tslint-angular", "tslint-config-standard" ], |
44124980 | 3 | "rules": { |
33f12c74 | 4 | "no-inferrable-types": true, |
44124980 | 5 | "eofline": true, |
44124980 | 6 | "max-line-length": [true, 140], |
df98563e | 7 | "no-floating-promises": false, |
dfecb900 | 8 | "no-unused-variable": false, // Memory issues |
c4710631 | 9 | "await-promise": [true, "PromiseLike"], |
dffd5d12 B |
10 | "member-ordering": [true, { |
11 | "order": [ | |
12 | "public-static-field", | |
13 | "private-static-field", | |
14 | "public-instance-field", | |
15 | "private-instance-field", | |
16 | "public-constructor", | |
17 | "private-constructor", | |
18 | "public-instance-method", | |
19 | "protected-instance-method", | |
20 | "private-instance-method" | |
21 | ]} | |
44124980 | 22 | ], |
16b55259 C |
23 | "variable-name": [ |
24 | true, | |
25 | "ban-keywords", | |
26 | "check-format", | |
27 | "allow-leading-underscore", | |
28 | "allow-pascal-case", | |
29 | "allow-trailing-underscore" | |
30 | ], | |
44124980 | 31 | |
c4710631 C |
32 | "no-shadowed-variable": false, |
33 | "no-bitwise": false, | |
34 | "max-classes-per-file": false, | |
35 | "interface-over-type-literal": false | |
44124980 C |
36 | } |
37 | } |