diff --git a/.eslintignore b/.eslintignore index 44a2c41f737..82f41c2dc88 100644 --- a/.eslintignore +++ b/.eslintignore @@ -5,3 +5,4 @@ vendor devenv data dist +e2e/tmp diff --git a/.eslintrc b/.eslintrc index 5d7f9ea5c0d..518210d0f62 100644 --- a/.eslintrc +++ b/.eslintrc @@ -4,6 +4,10 @@ "plugins": [ "no-only-tests" ], + "rules": { + "no-only-tests/no-only-tests": "error", + "react/prop-types": "off" + }, "overrides": [ { "files": [ @@ -13,9 +17,7 @@ ], "rules": { "react-hooks/rules-of-hooks": "off", - "react-hooks/exhaustive-deps": "off", - "react/prop-types": "off", - "no-only-tests/no-only-tests": "error" + "react-hooks/exhaustive-deps": "off" } } ]