2023-03-20 14:08:01 -04:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
rev: v4.4.0
|
|
|
|
hooks:
|
|
|
|
- id: end-of-file-fixer
|
2023-07-15 05:35:46 -04:00
|
|
|
exclude: 'src/icons/.*\.svg'
|
2023-03-20 14:08:01 -04:00
|
|
|
- id: fix-byte-order-marker
|
|
|
|
- id: mixed-line-ending
|
|
|
|
- id: trailing-whitespace
|
|
|
|
args: [--markdown-linebreak-ext=md]
|
|
|
|
- id: check-json
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-yaml
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2023-07-14 16:22:34 -04:00
|
|
|
rev: "v3.0.0"
|
2023-03-20 14:08:01 -04:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
2023-06-19 18:10:08 -04:00
|
|
|
rev: "v8.43.0"
|
2023-03-20 14:08:01 -04:00
|
|
|
hooks:
|
|
|
|
- id: eslint
|
|
|
|
files: \.([jt]s|astro)$ # *.js, *.ts and *.astro
|
|
|
|
types: [file]
|
|
|
|
additional_dependencies:
|
|
|
|
- eslint
|
|
|
|
- eslint-config-prettier
|
|
|
|
- eslint-plugin-unicorn
|
2023-07-14 18:19:28 -04:00
|
|
|
- prettier@3
|