Skip to content

Commit

Permalink
build: Workaround for jest version detection error
Browse files Browse the repository at this point in the history
Error: Error while loading rule 'jest/no-deprecated-functions': Unable to detect Jest version - please ensure jest package is installed, or otherwise set version explicitly

 preactjs/eslint-config-preact#19
  • Loading branch information
sclaret committed Jan 23, 2024
1 parent bab90a9 commit 15b457a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.cjs
Expand Up @@ -21,6 +21,5 @@ module.exports = {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
}
"rules": { "jest/no-deprecated-functions": 0 }
}

0 comments on commit 15b457a

Please sign in to comment.