diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 21:26:55 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 21:26:55 +0300 |
commit | 184879f3611953de6e14514bd920542ca16c70b6 (patch) | |
tree | fb7aa3653fbc3f12af1d78ed21536cc73d50e3f5 | |
parent | 92c2dc54a9edac7f8d7fe00d274d42b799b33d99 (diff) | |
download | eslint-config-184879f3611953de6e14514bd920542ca16c70b6.tar.xz eslint-config-184879f3611953de6e14514bd920542ca16c70b6.zip |
feat(typescript): Rule "interface-name-prefix"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/typescript/default.json | 7 |
2 files changed, 8 insertions, 1 deletions
@@ -345,7 +345,7 @@ - [ ] "func-call-spacing" - [ ] "generic-type-naming" - [X] "indent" -- [ ] "interface-name-prefix" +- [X] "interface-name-prefix" - [ ] "member-delimiter-style" - [ ] "member-naming" - [ ] "member-ordering" diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 206e1a9..5c2b40a 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -26,6 +26,13 @@ "outerIIFEBody": 1 } ], + "@typescript-eslint/interface-name-prefix": [ + "error", + { + "allowUnderscorePrefix": false, + "prefixWithI": "always" + } + ], "@typescript-eslint/quotes": [ "error", "double", |