From 42fabfeab2794b46baba6dabe59f0cf0b1d2916f Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Thu, 17 Jun 2021 22:29:51 +0200 Subject: [PATCH] ESLint: Enabled `no-dupe-disjunctions` rule (#2951) --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index fe17c46aaa..7aa1d052c4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -57,7 +57,7 @@ module.exports = { // regexp 'regexp/no-assertion-capturing-group': 'error', - // 'regexp/no-dupe-disjunctions': 'error', + 'regexp/no-dupe-disjunctions': 'error', 'regexp/no-empty-alternative': 'error', 'regexp/no-empty-lookarounds-assertion': 'error', 'regexp/no-lazy-ends': 'error',