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:
|
2022-12-17 17:04:38 +08:00
|
|
|
- repo: https://github.com/hadialqattan/pycln
|
2023-02-05 12:57:31 +08:00
|
|
|
rev: v2.1.3
|
2022-12-17 17:04:38 +08:00
|
|
|
hooks:
|
|
|
|
- id: pycln
|
|
|
|
args: [--config, pyproject.toml]
|
|
|
|
|
2022-01-15 21:27:43 +08:00
|
|
|
- repo: https://github.com/pycqa/isort
|
2023-02-05 12:57:31 +08:00
|
|
|
rev: 5.12.0
|
2022-01-15 21:27:43 +08:00
|
|
|
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
|
2023-02-05 12:57:31 +08:00
|
|
|
rev: 23.1.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
|
2023-03-07 13:14:28 +08:00
|
|
|
rev: v3.0.0-alpha.6
|
2022-01-15 21:27:43 +08:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
2022-11-14 19:05:34 +08:00
|
|
|
types_or: [javascript, jsx, ts, tsx, markdown, yaml, json]
|
2022-07-08 12:24:48 +08:00
|
|
|
stages: [commit]
|
|
|
|
|
|
|
|
- repo: https://github.com/nonebot/nonemoji
|
2022-10-02 15:49:31 +08:00
|
|
|
rev: v0.1.3
|
2022-07-08 12:24:48 +08:00
|
|
|
hooks:
|
|
|
|
- id: nonemoji
|
|
|
|
stages: [prepare-commit-msg]
|