diff --git a/.eslintrc.json b/.eslintrc.json index e0fa201bc1..e61dc1741e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -47,7 +47,11 @@ "unicorn/filename-case": "off", "unicorn/import-index": "off", "unicorn/no-unused-properties": "error", + "unicorn/prefer-includes": "off", "unicorn/prefer-node-append": "off", - "unicorn/prefer-query-selector": "off" + "unicorn/prefer-node-remove": "off", + "unicorn/prefer-query-selector": "off", + "unicorn/prefer-text-content": "off", + "unicorn/prevent-abbreviations": "off" } } diff --git a/js/tests/unit/.eslintrc.json b/js/tests/unit/.eslintrc.json index c8b3c9170c..27b29e2eca 100644 --- a/js/tests/unit/.eslintrc.json +++ b/js/tests/unit/.eslintrc.json @@ -54,7 +54,10 @@ "strict": "error", "unicorn/filename-case": "off", "unicorn/no-unused-properties": "error", + "unicorn/prefer-includes": "off", "unicorn/prefer-node-append": "off", - "unicorn/prefer-query-selector": "off" + "unicorn/prefer-node-remove": "off", + "unicorn/prefer-query-selector": "off", + "unicorn/prevent-abbreviations": "off" } } diff --git a/site/.eslintrc.json b/site/.eslintrc.json index 0cf2585505..8cda59ae28 100644 --- a/site/.eslintrc.json +++ b/site/.eslintrc.json @@ -32,6 +32,9 @@ "never" ], "strict": "error", - "unicorn/prefer-query-selector": "off" + "unicorn/prefer-includes": "off", + "unicorn/prefer-node-append": "off", + "unicorn/prefer-query-selector": "off", + "unicorn/prevent-abbreviations": "off" } }