👷♂️ Update tslint rules
This commit is contained in:
parent
e5bfdd6e95
commit
6eea513c4b
1 changed files with 16 additions and 13 deletions
|
@ -1,16 +1,19 @@
|
||||||
{
|
{
|
||||||
"defaultSeverity": "error",
|
"defaultSeverity": "error",
|
||||||
"extends": [
|
"extends": [
|
||||||
"tslint:recommended"
|
"tslint:recommended"
|
||||||
],
|
],
|
||||||
"jsRules": {},
|
"jsRules": {},
|
||||||
"rules": {
|
"rules": {
|
||||||
"comment-format": false,
|
"comment-format": false,
|
||||||
"indent": [true, "spaces", 2],
|
"indent": [true, "spaces", 2],
|
||||||
"max-line-length": false,
|
"max-line-length": false,
|
||||||
"no-bitwise": false,
|
"no-bitwise": false,
|
||||||
"no-console": false,
|
"no-console": false,
|
||||||
"quotemark": [true, "single"]
|
"no-invalid-this": [true, "check-function-in-method"],
|
||||||
|
"object-literal-sort-keys": [true, "match-declaration-order"],
|
||||||
|
"only-arrow-functions": false,
|
||||||
|
"quotemark": [true, "single"]
|
||||||
},
|
},
|
||||||
"rulesDirectory": []
|
"rulesDirectory": []
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue