From 31982f91ad2ef7312afe10a752aec67359e60fe7 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 14 Feb 2020 01:50:17 +0400 Subject: feat(eslint): Rule "no-sequences" Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/default.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index 2e95c71..cc0e64d 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -180,7 +180,7 @@ - [X] "no-script-url" - [ ] "no-self-assign" - [X] "no-self-compare" -- [ ] "no-sequences" +- [X] "no-sequences" - [ ] "no-setter-return" - [ ] "no-shadow" - [ ] "no-shadow-restricted-names" diff --git a/src/rules/default.json b/src/rules/default.json index a9c99db..a3dcce4 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -317,6 +317,9 @@ "no-self-compare": [ "error" ], + "no-sequences": [ + "error" + ], "no-spaced-func": [ "off" ], -- cgit v1.2.3