mjolnir/tslint.json

32 lines
792 B
JSON
Raw Normal View History

2019-09-26 02:13:20 +00:00
{
"extends": "tslint:recommended",
"rules": {
"ordered-imports": false,
"no-trailing-whitespace": "error",
"max-classes-per-file": {
"severity": "warning"
},
"object-literal-sort-keys": "off",
"no-any": {
"severity": "warning"
},
"arrow-return-shorthand": true,
"no-magic-numbers": true,
"prefer-for-of": true,
"typedef": {
"severity": "warning"
},
"await-promise": true,
"curly": true,
"no-empty": {
"severity": "warning"
},
"no-invalid-this": true,
"no-string-throw": {
"severity": "warning"
},
"no-unused-expression": true,
"prefer-const": true
}
}