diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 21:54:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 21:54:18 +0300 |
commit | f49a9ddf6694d1542171c4ce8bd4ea153493319a (patch) | |
tree | 7594e8cb3d92946241c345191051691308893e5a | |
parent | 2bd897000434fd05ba2b136b800a7bee7099f2e8 (diff) | |
download | eslint-config-f49a9ddf6694d1542171c4ce8bd4ea153493319a.tar.xz eslint-config-f49a9ddf6694d1542171c4ce8bd4ea153493319a.zip |
feat(eslint): Rule "multiline-comment-style'
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -70,7 +70,7 @@ - [ ] "max-params" - [ ] "max-statements" - [ ] "max-statements-per-line" -- [ ] "multiline-comment-style" +- [X] "multiline-comment-style" - [ ] "multiline-ternary" - [X] "new-cap" - [ ] "new-parens" diff --git a/src/rules/default.json b/src/rules/default.json index d9d03f4..ce5bbe1 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -89,6 +89,10 @@ "lines-around-directive": [ "off" ], + "multiline-comment-style": [ + "error", + "starred-block" + ], "new-cap": [ "error", { |