Started using TSLint

This commit is contained in:
2019-11-17 18:09:39 +09:00
parent 5394928ea9
commit 62d63740bb
7 changed files with 134 additions and 125 deletions

15
tslint.json Normal file
View File

@ -0,0 +1,15 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"semicolon": false,
"indent": [true, "tabs", 4],
"whitespace": false,
"arrow-parens": false,
"trailing-comma": false
},
"rulesDirectory": []
}