Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to improve the project's configuration and streamline the setup process. The most important changes involve updates to the ESLint configuration, the CodeQL workflow, and the Husky hooks.
ESLint and Prettier Configuration Updates:
eslint.config.mjs
file to replace the old.eslintrc.json
configuration, integrating Prettier and additional plugins for better code formatting and linting. (eslint.config.mjs
, eslint.config.mjsR1-R32).eslintrc.json
file to streamline the ESLint configuration. (.eslintrc.json
, .eslintrc.jsonL1-L21)package.json
to use the new ESLint configuration file and added new dependencies for ESLint and Prettier. (package.json
, [1] [2]prettier.config.js
file to customize Prettier settings. (prettier.config.js
, prettier.config.jsR1-R10)CodeQL Workflow Improvements:
.github/codeql/codeql-config.yml
, [1];.github/workflows/codeql.yml
, [2]Husky Hooks Reorganization:
.husky/pre-commit
, [1];.husky/pre-push
, [2].github/husky/pre-commit
, .github/husky/pre-commitL1-L11)Miscellaneous:
.eslintignore
and.prettierignore
to exclude unnecessary files from linting and formatting. (.eslintignore
, [1];.prettierignore
, [2].prettierrc.js
, .prettierrc.jsL1)These changes collectively aim to improve the project's code quality, streamline the development workflow, and enhance security practices.