-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(eslint.config.js): simplify eslintConfig export for clarity
feat(package.json): bump version to 1.3.6 and add eslint-plugin-react-hooks refactor(nextjs/config.ts, react/config.ts): extract rule renaming logic to improve maintainability refactor(gen.d.ts): remove deprecated react-hooks rules to align with updated hooks best practices style(type.ts): disable no-explicit-any rule to allow any types where necessary feat(utils/extension.ts): add eslint-plugin-react-hooks to extensions refactor(utils/factory.ts): include nextjs plugin in eslintConfig mapping for consistency refactor(utils/naming.ts): correct return type annotation in renameRules function style: disable ts/no-explicit-any rule to allow any type usage where needed
- Loading branch information
Showing
10 changed files
with
55 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
import { eslintConfig } from "./dist/index.js"; | ||
|
||
export default eslintConfig( | ||
{ | ||
typescript: { tsconfigPath: "./tsconfig.json" }, | ||
}, | ||
{ | ||
rules: { "ts/no-explicit-any": "off" }, | ||
}, | ||
); | ||
export default eslintConfig({ | ||
typescript: { tsconfigPath: "./tsconfig.json" }, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters