Skip to content

Commit

Permalink
feat(package.json, factory.ts): bump version to 1.3.3 and extend esli…
Browse files Browse the repository at this point in the history
…ntConfig with React-related rules

- Update package version to reflect new features
- Add new React and React hooks rules to eslintConfig for better React linting support
  • Loading branch information
Bluzzi committed Dec 25, 2024
1 parent 582b713 commit ad463b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bluzzi/eslint-config",
"description": "ESLint configuration preset for linting and formatting all your files",
"version": "1.3.2",
"version": "1.3.3",
"license": "MIT",
"author": "Bluzzi",
"type": "module",
Expand Down
4 changes: 4 additions & 0 deletions src/utils/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ export const eslintConfig = async (
"@stylistic": "style",
"@typescript-eslint": "ts",
"n": "node",
"@eslint-react": "react", // TODO: regroup all the react rules?
"@eslint-react/hooks": "react-hooks",
"@eslint-react/hooks-extra": "react-hooks-extra",
"@eslint-react/naming-convention": "react-naming-convention",
});

return composer;
Expand Down

0 comments on commit ad463b4

Please sign in to comment.