ing
This commit is contained in:
parent
e799c135be
commit
5352d6b56d
30
tslint.json
30
tslint.json
|
@ -24,8 +24,8 @@
|
|||
true
|
||||
],
|
||||
"no-unnecessary-initializer": true,
|
||||
"no-magic-numbers": true,
|
||||
"no-require-imports": true,
|
||||
"no-magic-numbers": false,
|
||||
"no-require-imports": false,
|
||||
"no-duplicate-super": true,
|
||||
"no-boolean-literal-compare": true,
|
||||
"no-namespace": [
|
||||
|
@ -50,6 +50,30 @@
|
|||
"unified-signatures": true,
|
||||
"prefer-for-of": true,
|
||||
"match-default-export-name": true,
|
||||
"prefer-const": true
|
||||
"prefer-const": false,
|
||||
"semicolon": [
|
||||
true,
|
||||
"always"
|
||||
],
|
||||
"trailing-comma": [
|
||||
true,
|
||||
{
|
||||
"multiline": {
|
||||
"objects": "always",
|
||||
"arrays": "always",
|
||||
"functions": "always",
|
||||
"typeLiterals": "ignore"
|
||||
},
|
||||
"esSpecCompliant": true
|
||||
}
|
||||
],
|
||||
"space-before-function-paren": [
|
||||
true,
|
||||
{
|
||||
"anonymous": "always",
|
||||
"named": "never",
|
||||
"asyncArrow": "always"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user