24 lines
470 B
JSON
24 lines
470 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": [
|
|
"tslint:recommended"
|
|
],
|
|
"jsRules": {},
|
|
"rules": {
|
|
"semicolon": false,
|
|
"indent": [true, "tabs", 4],
|
|
"whitespace": false,
|
|
"arrow-parens": false,
|
|
"trailing-comma": false,
|
|
"prefer-const": true,
|
|
"no-var-keyword": true,
|
|
"eofline": true,
|
|
"no-console": false,
|
|
"object-literal-sort-keys": false,
|
|
"no-string-literal": false,
|
|
"max-line-length": false,
|
|
"no-string-throw": false
|
|
},
|
|
"rulesDirectory": []
|
|
}
|