|
69 | 69 | "comment-format": [true, "check-space"],
|
70 | 70 | "import-blacklist": [true, "rxjs"],
|
71 | 71 | "interface-over-type-literal": false,
|
| 72 | + "interface-name": false, |
72 | 73 | "max-line-length": [true, 120],
|
73 | 74 | "member-access": false,
|
74 |
| - "member-ordering": [true, { |
75 |
| - "order": "fields-first" |
76 |
| - }], |
| 75 | + "member-ordering": [true, { "order": "fields-first" }], |
77 | 76 | "newline-before-return": false,
|
78 | 77 | "no-any": false,
|
79 | 78 | "no-empty-interface": false,
|
|
82 | 81 | "no-invalid-this": [true, "check-function-in-method"],
|
83 | 82 | "no-null-keyword": false,
|
84 | 83 | "no-require-imports": false,
|
85 |
| - "no-switch-case-fall-through": true, |
86 |
| - "no-submodule-imports": [true, "rxjs", "@src"], |
| 84 | + "no-submodule-imports": [true, "@src", "rxjs"], |
| 85 | + "no-this-assignment": [true, { "allow-destructuring": true }], |
87 | 86 | "no-trailing-whitespace": true,
|
88 |
| - "no-this-assignment": [true, { |
89 |
| - "allow-destructuring": true |
90 |
| - }], |
91 | 87 | "no-unused-variable": [true, "react"],
|
92 | 88 | "object-literal-sort-keys": false,
|
93 | 89 | "object-literal-shorthand": false,
|
|
96 | 92 | "ordered-imports": [false],
|
97 | 93 | "prefer-method-signature": false,
|
98 | 94 | "prefer-template": [true, "allow-single-concat"],
|
99 |
| - "semicolon": [true, "ignore-interfaces"], |
100 | 95 | "quotemark": [true, "single", "jsx-double"],
|
| 96 | + "semicolon": [true, "always"], |
| 97 | + "trailing-comma": [true, { |
| 98 | + "singleline": "never", |
| 99 | + "multiline": { |
| 100 | + "objects": "always", |
| 101 | + "arrays": "always", |
| 102 | + "functions": "never", |
| 103 | + "typeLiterals": "ignore" |
| 104 | + }, |
| 105 | + "esSpecCompliant": true |
| 106 | + }], |
101 | 107 | "triple-equals": [true, "allow-null-check"],
|
| 108 | + "type-literal-delimiter": true, |
102 | 109 | "typedef": [true,"parameter", "property-declaration"],
|
103 |
| - "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"] |
| 110 | + "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"], |
| 111 | + // tslint-react |
| 112 | + "jsx-no-lambda": false |
104 | 113 | }
|
105 | 114 | }
|
106 | 115 | ```
|
|
0 commit comments