| 12345678910111213141516171819 |
- {
- "extends": "tslint-config-standard",
- "jsRules": true,
- "rules": {
- "member-ordering": false,
- "no-conditional-assignment": false,
- "no-consecutive-blank-lines": false,
- "no-empty": false,
- "no-use-before-declare": false,
- "no-unnecessary-type-assertion": false,
- "no-unused-expression": {
- "options": [ "allow-new", "allow-fast-null-checks" ]
- },
- "space-before-function-paren": false,
- "space-within-parens": false,
- "strict-type-predicates": false,
- "unified-signatures": false
- }
- }
|