Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import tseslint from "typescript-eslint";
import localRules from "./lint/rules/index.mjs";
import unusedImports from "eslint-plugin-unused-imports";
import eslintPluginUnicorn from "eslint-plugin-unicorn";
import reactYouMightNotNeedAnEffect from "eslint-plugin-react-you-might-not-need-an-effect";

export default tseslint.config(
globalIgnores([
Expand All @@ -36,6 +37,7 @@ export default tseslint.config(
react.configs.flat["jsx-runtime"],
reactHooks.configs["recommended-latest"],
reactRefresh.configs.vite,
reactYouMightNotNeedAnEffect.configs.recommended,

{
settings: {
Expand Down
47 changes: 47 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.5.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^61.0.2",
"eslint-plugin-unused-imports": "^4.2.0",
Expand Down
Loading