diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/typescript/default.json | 8 |
2 files changed, 9 insertions, 1 deletions
@@ -380,7 +380,7 @@ - [ ] "no-unnecessary-qualifier" - [ ] "no-unnecessary-type-arguments" - [ ] "no-unnecessary-type-assertion" -- [ ] "no-untyped-public-signature" +- [X] "no-untyped-public-signature" - [ ] "no-unused-expressions" - [ ] "no-unused-vars" - [ ] "no-unused-vars-experimental" diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 55a5216..26bd453 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -67,6 +67,14 @@ "allowDefinitionFiles": true } ], + "@typescript-eslint/no-untyped-public-signature": [ + "error", + { + "ignoredMethods": [ + "constructor" + ] + } + ], "@typescript-eslint/quotes": [ "error", "double", |