From 877c5f7ad13849f8b069f1edc862eb83afb5b683 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 22:47:32 +0400 Subject: [PATCH] feat(eslint): Rule "no-underscore-dangle" Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/default.json | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index de2aba2..ee03e01 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -196,7 +196,7 @@ - [ ] "no-undef" - [ ] "no-undef-init" - [ ] "no-undefined" -- [ ] "no-underscore-dangle" +- [X] "no-underscore-dangle" - [ ] "no-unexpected-multiline" - [ ] "no-unmodified-loop-condition" - [ ] "no-unneeded-ternary" diff --git a/src/rules/default.json b/src/rules/default.json index 70a6913..16571dc 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -149,6 +149,15 @@ "no-ternary": [ "off" ], + "no-underscore-dangle": [ + "error", + { + "allowAfterSuper": false, + "allowAfterThis": true, + "allowAfterThisConstructor": false, + "enforceInMethodNames": false + } + ], "no-unused-vars": [ "error", {