Chore: Lint all files for no-only-tests (#30364)

This commit is contained in:
Zoltán Bedi 2021-01-19 11:06:27 +01:00 committed by GitHub
parent 1cecc7f9b5
commit 202f88c610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -5,3 +5,4 @@ vendor
devenv
data
dist
e2e/tmp

View File

@ -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"
}
}
]