From 1034b0f1f8063165cbc624172eec76af11651595 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Thu, 1 Dec 2022 12:43:53 +0900 Subject: [PATCH] feat(regexp): enable `no-extra-lookaround-assertions` and `no-missing-g-flag` --- rules/plugins/regexp.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules/plugins/regexp.js b/rules/plugins/regexp.js index 25760528..b12ba04c 100644 --- a/rules/plugins/regexp.js +++ b/rules/plugins/regexp.js @@ -7,7 +7,9 @@ module.exports = { "regexp/no-contradiction-with-assertion": "error", "regexp/no-control-character": "error", "regexp/no-empty-character-class": "error", + "regexp/no-extra-lookaround-assertions": "error", "regexp/no-misleading-unicode-character": "error", + "regexp/no-missing-g-flag": "error", "regexp/no-octal": "error", "regexp/no-standalone-backslash": "error", "regexp/no-super-linear-move": "warn",