Fixed rules

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-06-18 01:02:06 +04:00
parent 10507bf4d5
commit 14cecabc10
3 changed files with 4 additions and 15 deletions

View File

@ -308,6 +308,7 @@
- [ ] "no-dynamic-require"
- [ ] "no-extraneous-dependencies"
- [ ] "no-internal-modules"
- [ ] "no-loss-of-precision"
- [ ] "no-mutable-exports"
- [ ] "no-named-as-default"
- [ ] "no-named-as-default-member"
@ -380,6 +381,7 @@
- [ ] "ban-tslint-comment"
- [ ] "ban-types"
- [ ] "brace-style"
- [ ] "camelcase"
- [X] "class-literal-property-style"
- [X] "comma-spacing"
- [ ] "consistent-type-assertions"
@ -436,7 +438,6 @@
- [X] "no-unsafe-call"
- [X] "no-unsafe-member-access"
- [X] "no-unsafe-return"
- [X] "no-untyped-public-signature"
- [ ] "no-unused-expressions"
- [X] "no-unused-vars"
- [X] "no-unused-vars-experimental"

View File

@ -106,8 +106,7 @@
"VariableDeclarator": 1,
"flatTernaryExpressions": true,
"ignoreComments": false,
"ignoredNodes": [],
"offsetTernaryExpressions": 1,
"offsetTernaryExpressions": true,
"outerIIFEBody": 1
}
],
@ -468,10 +467,7 @@
"consistent": true,
"minProperties": 1,
"multiline": true
},
"consistent": true,
"minProperties": 1,
"multiline": true
}
}
],
"object-curly-spacing": [

View File

@ -138,14 +138,6 @@
"@typescript-eslint/no-unsafe-return": [
"error"
],
"@typescript-eslint/no-untyped-public-signature": [
"warn",
{
"ignoredMethods": [
"constructor"
]
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{