|
|
@ -38,7 +38,7 @@ |
|
|
"no-construct": true, |
|
|
"no-construct": true, |
|
|
"no-debugger": true, |
|
|
"no-debugger": true, |
|
|
"no-duplicate-variable": true, |
|
|
"no-duplicate-variable": true, |
|
|
"no-empty": false, |
|
|
"no-empty": true, |
|
|
"no-eval": true, |
|
|
"no-eval": true, |
|
|
"no-inferrable-types": [ |
|
|
"no-inferrable-types": [ |
|
|
true, |
|
|
true, |
|
|
@ -48,6 +48,7 @@ |
|
|
"no-string-literal": false, |
|
|
"no-string-literal": false, |
|
|
"no-switch-case-fall-through": true, |
|
|
"no-switch-case-fall-through": true, |
|
|
"no-trailing-whitespace": true, |
|
|
"no-trailing-whitespace": true, |
|
|
|
|
|
|
|
|
"no-unused-expression": true, |
|
|
"no-unused-expression": true, |
|
|
"no-unused-variable": true, |
|
|
"no-unused-variable": true, |
|
|
"no-use-before-declare": true, |
|
|
"no-use-before-declare": true, |
|
|
@ -62,10 +63,12 @@ |
|
|
], |
|
|
], |
|
|
"only-arrow-functions": [ |
|
|
"only-arrow-functions": [ |
|
|
true, |
|
|
true, |
|
|
"allow-declarations"], |
|
|
"allow-declarations" |
|
|
|
|
|
], |
|
|
"ordered-imports": [ |
|
|
"ordered-imports": [ |
|
|
true |
|
|
true |
|
|
], |
|
|
], |
|
|
|
|
|
"prefer-for-of": true, |
|
|
"quotemark": [ |
|
|
"quotemark": [ |
|
|
true, |
|
|
true, |
|
|
"single" |
|
|
"single" |
|
|
@ -74,6 +77,13 @@ |
|
|
"semicolon": [ |
|
|
"semicolon": [ |
|
|
"always" |
|
|
"always" |
|
|
], |
|
|
], |
|
|
|
|
|
"trailing-comma": [ |
|
|
|
|
|
true, |
|
|
|
|
|
{ |
|
|
|
|
|
"multiline": "never", |
|
|
|
|
|
"singleline": "never" |
|
|
|
|
|
} |
|
|
|
|
|
], |
|
|
"triple-equals": [ |
|
|
"triple-equals": [ |
|
|
true, |
|
|
true, |
|
|
"allow-null-check" |
|
|
"allow-null-check" |
|
|
|