Skip to content

Commit

Permalink
chore(deps): add ESLint configuration in package.json and yarn.lock f…
Browse files Browse the repository at this point in the history
…or improved code quality and linting setups
  • Loading branch information
guidomodarelli committed Nov 22, 2024
1 parent 0ca3eaf commit 2be09f9
Show file tree
Hide file tree
Showing 2 changed files with 2,112 additions and 0 deletions.
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"type": "commonjs",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"typescript": "^5.6.3"
}
}
Loading

0 comments on commit 2be09f9

Please sign in to comment.