nonebot2/.pre-commit-config.yaml

33 lines
828 B
YAML
Raw Normal View History

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
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/astral-sh/ruff-pre-commit
2024-10-31 21:35:08 +08:00
rev: v0.7.1
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
2024-10-31 21:35:08 +08:00
stages: [pre-commit]
2022-01-15 21:27:43 +08:00
- repo: https://github.com/pycqa/isort
rev: 5.13.2
2022-01-15 21:27:43 +08:00
hooks:
- id: isort
2024-10-31 21:35:08 +08:00
stages: [pre-commit]
2022-01-15 21:27:43 +08:00
- repo: https://github.com/psf/black
2024-10-31 21:35:08 +08:00
rev: 24.10.0
2022-01-15 21:27:43 +08:00
hooks:
- id: black
2024-10-31 21:35:08 +08:00
stages: [pre-commit]
- repo: https://github.com/nonebot/nonemoji
rev: v0.1.4
hooks:
- id: nonemoji
stages: [prepare-commit-msg]