feat(typescript): comma-spacing
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
ff60ccfbd9
commit
18c9632298
@ -390,7 +390,7 @@
|
|||||||
- [ ] "brace-style"
|
- [ ] "brace-style"
|
||||||
- [ ] "camelcase"
|
- [ ] "camelcase"
|
||||||
- [ ] "class-name-casing"
|
- [ ] "class-name-casing"
|
||||||
- [ ] "comma-spacing"
|
- [X] "comma-spacing"
|
||||||
- [ ] "consistent-type-assertions"
|
- [ ] "consistent-type-assertions"
|
||||||
- [ ] "consistent-type-definitions"
|
- [ ] "consistent-type-definitions"
|
||||||
- [ ] "default-param-last"
|
- [ ] "default-param-last"
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
"@typescript-eslint/await-thenable": [
|
"@typescript-eslint/await-thenable": [
|
||||||
"error"
|
"error"
|
||||||
],
|
],
|
||||||
|
"@typescript-eslint/comma-spacing": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"after": true,
|
||||||
|
"before": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"@typescript-eslint/indent": [
|
"@typescript-eslint/indent": [
|
||||||
"error",
|
"error",
|
||||||
"tab",
|
"tab",
|
||||||
@ -172,6 +179,9 @@
|
|||||||
"variableDeclaration": true
|
"variableDeclaration": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"comma-spacing": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
"indent": [
|
"indent": [
|
||||||
"off"
|
"off"
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user