Create tslint.json

This commit is contained in:
Justin Edmund 2022-01-28 23:19:31 -08:00
parent 82348321bb
commit 55b890d0c9

14
tslint.json Normal file
View file

@ -0,0 +1,14 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"no-console": false
},
"rules": {
"no-console": false,
"trailing-comma": [false]
},
"rulesDirectory": []
}