2023-10-17 23:23:33 -07:00
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
rev: v3.2.0
|
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
exclude: "(^mkdocs\\.yml$)"
|
|
|
|
- id: check-added-large-files
|
2025-03-30 21:40:03 -07:00
|
|
|
- repo: https://github.com/rbubley/mirrors-prettier
|
|
|
|
rev: 'v3.3.3'
|
2023-10-17 23:23:33 -07:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
types_or:
|
|
|
|
- javascript
|
|
|
|
- markdown
|
|
|
|
- jsx
|
2025-03-30 21:40:03 -07:00
|
|
|
additional_dependencies:
|
|
|
|
- prettier@3.3.3
|
|
|
|
- 'prettier-plugin-organize-imports@4.1.0'
|