From f49a9ddf6694d1542171c4ce8bd4ea153493319a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 22:54:18 +0400 Subject: feat(eslint): Rule "multiline-comment-style' Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/default.json | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index fd16a37..08840b7 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -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", { -- cgit v1.2.3