From 202f88c610be319f900292c1a99c1d5efac7196e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Bedi?= Date: Tue, 19 Jan 2021 11:06:27 +0100 Subject: [PATCH] Chore: Lint all files for no-only-tests (#30364) --- .eslintignore | 1 + .eslintrc | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) 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" } } ]