|
1 | 1 | { |
2 | | - "extends": "tslint-config-airbnb", |
| 2 | + "extends": "@smartive/tslint-config", |
3 | 3 | "rules": { |
4 | 4 | "function-name": false, |
5 | | - "max-line-length": [ |
6 | | - true, |
7 | | - 125 |
8 | | - ], |
9 | | - "member-ordering": [ |
10 | | - true, |
11 | | - { |
12 | | - "order": [ |
13 | | - "public-static-field", |
14 | | - "protected-static-field", |
15 | | - "private-static-field", |
16 | | - "public-instance-field", |
17 | | - "protected-instance-field", |
18 | | - "private-instance-field", |
19 | | - "constructor", |
20 | | - "public-static-method", |
21 | | - "protected-static-method", |
22 | | - "private-static-method", |
23 | | - "public-instance-method", |
24 | | - "protected-instance-method", |
25 | | - "private-instance-method" |
26 | | - ] |
27 | | - } |
28 | | - ], |
29 | | - "no-increment-decrement": false, |
30 | | - "no-trailing-whitespace": [ |
31 | | - true, |
32 | | - "ignore-jsdoc", |
33 | | - "ignore-template-strings" |
34 | | - ], |
35 | 5 | "ter-arrow-parens": [ |
36 | 6 | true, |
37 | 7 | "as-needed" |
38 | 8 | ], |
39 | | - "no-boolean-literal-compare": false, |
40 | | - "strict-boolean-expressions": false, |
41 | 9 | "ter-indent": [ |
42 | 10 | true, |
43 | 11 | 4, |
44 | 12 | { |
45 | 13 | "SwitchCase": 1 |
46 | 14 | } |
47 | | - ], |
48 | | - "typedef": [ |
49 | | - true, |
50 | | - "call-signature", |
51 | | - "parameter", |
52 | | - "property-declaration", |
53 | | - "member-variable-declaration" |
54 | | - ], |
55 | | - "variable-name": [ |
56 | | - true, |
57 | | - "check-format", |
58 | | - "ban-keywords", |
59 | | - "allow-leading-underscore" |
60 | 15 | ] |
61 | 16 | } |
62 | 17 | } |
0 commit comments