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 development workflow and enforce code quality standards. The most important changes include the addition of a spell-check configuration, updates to the pre-commit hooks, and modifications to the
package.json
file to integrate Husky and other tools.Development Workflow Improvements:
.cspell.yaml
file to configure spell-checking with custom dictionaries and ignore paths. (.cspell.yaml
, .cspell.yamlR1-R30).husky/pre-commit
script to run linting and pre-commit checks usingpre-commit
if available. (.husky/pre-commit
, .husky/pre-commitR1-R9).pre-commit-config.yaml
file to define various pre-commit hooks, including checks for large files, merge conflicts, YAML validation, and markdown linting. (.pre-commit-config.yaml
, .pre-commit-config.yamlR1-R51)Package Configuration:
package.json
to add Husky and aprepare
script to set up Git hooks. (package.json
, [1] [2]lint:all
script topackage.json
for running both lint and Prettier checks. (package.json
, package.jsonR34-R42)Miscellaneous:
release.yml
workflow to disable Husky during the release process. (.github/workflows/release.yml
, .github/workflows/release.ymlR22-R24)