diff --git a/ROADMAP.md b/ROADMAP.md index f67a8fd..5223d8f 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -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",