From 2d8a11cb2f4f2caee86cc87def3181cede724de2 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 14 Feb 2020 01:43:53 +0400 Subject: feat(eslint): Rule "no-octal-escape" 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 30e6de5..d28164e 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -159,7 +159,7 @@ - [X] "no-new-wrappers" - [ ] "no-obj-calls" - [ ] "no-octal" -- [ ] "no-octal-escape" +- [X] "no-octal-escape" - [ ] "no-param-reassign" - [ ] "no-path-concat" - [ ] "no-plusplus" diff --git a/src/rules/default.json b/src/rules/default.json index d76ffeb..d04adf1 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -302,6 +302,9 @@ "no-new-wrappers": [ "error" ], + "no-octal-escape": [ + "error" + ], "no-spaced-func": [ "off" ], -- cgit v1.2.3