Added tslint

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-01-05 00:49:19 +01:00
parent 9520217705
commit a99febbd7c
3 changed files with 60 additions and 5 deletions

18
tslint.json Normal file
View File

@ -0,0 +1,18 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"indent": [
true,
"tabs"
],
"semicolon": [true, "never"],
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"interface-name": [false],
"array-type": [true, "generic"]
},
"rulesDirectory": []
}