diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/typescript/default.json | 10 |
2 files changed, 11 insertions, 1 deletions
@@ -390,7 +390,7 @@ - [ ] "brace-style" - [ ] "camelcase" - [ ] "class-name-casing" -- [ ] "comma-spacing" +- [X] "comma-spacing" - [ ] "consistent-type-assertions" - [ ] "consistent-type-definitions" - [ ] "default-param-last" diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index e888c02..a5c0937 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -2,6 +2,13 @@ "@typescript-eslint/await-thenable": [ "error" ], + "@typescript-eslint/comma-spacing": [ + "error", + { + "after": true, + "before": false + } + ], "@typescript-eslint/indent": [ "error", "tab", @@ -172,6 +179,9 @@ "variableDeclaration": true } ], + "comma-spacing": [ + "off" + ], "indent": [ "off" ], |