diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/typescript/default.json | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -354,7 +354,7 @@ - [ ] "no-dupe-class-members" - [ ] "no-dynamic-delete" - [ ] "no-empty-function" -- [ ] "no-empty-interface" +- [X] "no-empty-interface" - [ ] "no-explicit-any" - [ ] "no-extra-non-null-assertion" - [ ] "no-extra-parens" diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 5c2b40a..5786671 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -33,6 +33,12 @@ "prefixWithI": "always" } ], + "@typescript-eslint/no-empty-interface": [ + "warn", + { + "allowSingleExtends": false + } + ], "@typescript-eslint/quotes": [ "error", "double", |