nonebot2/.pre-commit-config.yaml

23 lines
558 B
YAML
Raw Normal View History

2022-01-15 13:27:43 +00:00
ci:
autofix_commit_msg: ":rotating_light: auto fix by pre-commit hooks"
autofix_prs: true
autoupdate_branch: dev
autoupdate_schedule: weekly
2022-01-16 02:52:12 +00:00
autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks"
2022-01-15 13:27:43 +00:00
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
- repo: https://github.com/psf/black
2022-02-11 03:24:34 +00:00
rev: 22.1.0
2022-01-15 13:27:43 +00:00
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
hooks:
- id: prettier
2022-01-16 02:52:12 +00:00
types_or: [javascript, jsx, ts, tsx, markdown]