2025-07-29 14:38:27 -04:00
|
|
|
repos:
|
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
|
rev: v4.5.0
|
|
|
|
|
hooks:
|
|
|
|
|
- id: trailing-whitespace
|
2025-07-30 08:55:35 -04:00
|
|
|
exclude: ^dist/
|
2025-07-29 14:38:27 -04:00
|
|
|
- id: end-of-file-fixer
|
2025-07-30 08:55:35 -04:00
|
|
|
exclude: ^dist/
|
2025-07-29 14:38:27 -04:00
|
|
|
- id: check-yaml
|
|
|
|
|
- id: check-added-large-files
|
2025-07-30 08:55:35 -04:00
|
|
|
exclude: ^dist/
|
2025-07-29 16:33:49 -04:00
|
|
|
- id: check-json
|
|
|
|
|
- id: pretty-format-json
|
|
|
|
|
args: ['--autofix']
|
2025-07-30 08:29:39 -04:00
|
|
|
exclude: ^package-lock\.json$
|
2025-07-29 14:38:27 -04:00
|
|
|
|
2025-07-29 16:33:49 -04:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
|
|
|
rev: v3.1.0
|
2025-07-29 14:38:27 -04:00
|
|
|
hooks:
|
2025-07-29 16:33:49 -04:00
|
|
|
- id: prettier
|
2025-07-30 08:55:35 -04:00
|
|
|
exclude: ^(dist/|.*\.md$)
|
2025-07-29 16:33:49 -04:00
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
|
|
|
|
rev: v8.56.0
|
|
|
|
|
hooks:
|
|
|
|
|
- id: eslint
|
|
|
|
|
files: \.js$
|
2025-07-29 17:07:15 -04:00
|
|
|
args: ['--fix']
|
2025-07-30 08:55:35 -04:00
|
|
|
exclude: ^dist/
|