2022-07-08 12:24:48 +08:00
|
|
|
default_install_hook_types: [pre-commit, prepare-commit-msg]
|
2022-01-15 21:27:43 +08:00
|
|
|
ci:
|
|
|
|
autofix_commit_msg: ":rotating_light: auto fix by pre-commit hooks"
|
|
|
|
autofix_prs: true
|
2022-02-16 14:17:33 +08:00
|
|
|
autoupdate_branch: master
|
|
|
|
autoupdate_schedule: monthly
|
2022-01-16 10:52:12 +08:00
|
|
|
autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks"
|
2022-01-15 21:27:43 +08:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
|
|
rev: 5.10.1
|
|
|
|
hooks:
|
|
|
|
- id: isort
|
2022-07-08 12:24:48 +08:00
|
|
|
stages: [commit]
|
2022-01-15 21:27:43 +08:00
|
|
|
|
|
|
|
- repo: https://github.com/psf/black
|
2022-07-05 10:17:39 +08:00
|
|
|
rev: 22.6.0
|
2022-01-15 21:27:43 +08:00
|
|
|
hooks:
|
|
|
|
- id: black
|
2022-07-08 12:24:48 +08:00
|
|
|
stages: [commit]
|
2022-01-15 21:27:43 +08:00
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2022-07-05 10:17:39 +08:00
|
|
|
rev: v2.7.1
|
2022-01-15 21:27:43 +08:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
2022-07-08 12:24:48 +08:00
|
|
|
types_or: [javascript, jsx, ts, tsx, markdown, yaml]
|
|
|
|
stages: [commit]
|
|
|
|
|
|
|
|
- repo: https://github.com/nonebot/nonemoji
|
|
|
|
rev: v0.1.2
|
|
|
|
hooks:
|
|
|
|
- id: nonemoji
|
|
|
|
stages: [prepare-commit-msg]
|