notify.moe/tslint.json

24 lines
470 B
JSON
Raw Permalink Normal View History

2019-11-17 09:09:39 +00:00
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"semicolon": false,
"indent": [true, "tabs", 4],
"whitespace": false,
"arrow-parens": false,
2019-11-17 09:25:14 +00:00
"trailing-comma": false,
"prefer-const": true,
2019-11-17 09:44:30 +00:00
"no-var-keyword": true,
2019-11-18 02:04:13 +00:00
"eofline": true,
"no-console": false,
"object-literal-sort-keys": false,
"no-string-literal": false,
"max-line-length": false,
"no-string-throw": false
2019-11-17 09:09:39 +00:00
},
"rulesDirectory": []
}