diff options
Diffstat (limited to 'src/rules/typescript')
-rw-r--r-- | src/rules/typescript/default.json | 10 |
1 files changed, 10 insertions, 0 deletions
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" ], |