tslint.json
47 lines
| 1.2 KiB
| application/json
|
JsonLexer
/ djx / tslint.json
cin
|
r79 | { | |
"extends": "tslint:recommended", | |||
"defaultSeverity": "warn", | |||
"rules": { | |||
"align": [ | |||
true, | |||
"parameters", | |||
"statements" | |||
], | |||
"interface-name": [ | |||
false | |||
], | |||
"max-line-length": [ | |||
true, | |||
185 | |||
], | |||
"quotemark": [true, "double", "avoid-escape"], | |||
"member-access": false, | |||
"semicolon": [true, "always", "ignore-bound-class-methods"], | |||
"no-bitwise": false, | |||
"no-empty": false, | |||
"no-namespace": false, | |||
"ordered-imports": false, | |||
"no-return-await": true, | |||
"no-floating-promises": true, | |||
"one-line": [ | |||
true, | |||
"check-open-brace", | |||
"check-catch", | |||
"check-whitespace" | |||
], | |||
"object-literal-sort-keys": false, | |||
"trailing-comma": [ | |||
true, | |||
{ | |||
"singleline": "never", | |||
"multiline": "never" | |||
} | |||
], | |||
"variable-name": false, | |||
"curly": false, | |||
"array-type": false, | |||
"arrow-parens": [ | |||
true, | |||
"ban-single-arg-parens" | |||
] | |||
} | |||
} |