diff options
Diffstat (limited to 'src/rules/typescript/default.json')
-rw-r--r-- | src/rules/typescript/default.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 244b4a8..631bdf2 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -90,6 +90,9 @@ "@typescript-eslint/no-unused-vars-experimental": [ "error" ], + "@typescript-eslint/no-useless-constructor": [ + "error" + ], "@typescript-eslint/quotes": [ "error", "double", @@ -144,6 +147,9 @@ "no-unused-vars": [ "off" ], + "no-useless-constructor": [ + "off" + ], "quotes": [ "off" ], |