28 lines
708 B
YAML
28 lines
708 B
YAML
repos:
|
|
- repo: https://github.com/python/black
|
|
rev: 23.9.1
|
|
hooks:
|
|
- id: black
|
|
language_version: python3.10
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.12.0
|
|
hooks:
|
|
- id: isort
|
|
args: [ "--profile", "black", "--filter-files" ]
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: "v3.0.3"
|
|
hooks:
|
|
- id: prettier
|
|
exclude: >
|
|
(?x)^(
|
|
.*.yaml|
|
|
package-lock.json|
|
|
yarn.lock|
|
|
^.+\.min\.(js|css)$
|
|
)$
|
|
stages: [ commit ]
|
|
- repo: https://github.com/commitizen-tools/commitizen
|
|
rev: 3.5.3
|
|
hooks:
|
|
- id: commitizen
|
|
stages: [ commit-msg ] |