Skip to content

Commit

Permalink
Fix: Downgraded ESLint version to resolve peer depend issue
Browse files Browse the repository at this point in the history
  • Loading branch information
videlais committed Apr 17, 2024
1 parent 1187d6c commit 014dacc
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 83 deletions.
20 changes: 7 additions & 13 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
{
"env": {
"browser": true,
"es2023": true,
"es2021": true,
"node": true,
"jest/globals": true
},
"extends": [
"standard",
"plugin:jest/recommended",
"plugin:jsdoc/recommended"
],
"extends": "standard",
"parserOptions": {
"ecmaVersion": 13,
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"semi": ["error", "always"]
"semi": [2, "always"]
},
"plugins": [
"jest",
"@babel",
"jsdoc"
],
"parser": "@babel/eslint-parser"
"jest"
]
}
Loading

0 comments on commit 014dacc

Please sign in to comment.