24 lines
597 B
YAML
24 lines
597 B
YAML
|
---
|
||
|
# 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: v4.0.1
|
||
|
hooks:
|
||
|
- id: trailing-whitespace
|
||
|
- id: end-of-file-fixer
|
||
|
- id: check-yaml
|
||
|
- id: check-added-large-files
|
||
|
exclude: |
|
||
|
(?x)^(
|
||
|
.*\.cjs
|
||
|
)$
|
||
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
||
|
rev: v7.32.0
|
||
|
hooks:
|
||
|
- id: eslint
|
||
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||
|
rev: v2.4.1
|
||
|
hooks:
|
||
|
- id: prettier
|