LittlePaimon/.pre-commit-config.yaml
CMHopeSunshine 49ea404eb8 🎉 Init
2023-03-01 23:51:11 +08:00

30 lines
690 B
YAML

ci:
autofix_commit_msg: ":rotating_light: auto fix by pre-commit hooks"
autofix_prs: true
autoupdate_branch: dev
autoupdate_schedule: monthly
autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks"
repos:
- repo: https://github.com/psf/black
rev: 23.1a1
hooks:
- id: black
args: [-S, --verbose]
verbose: true
- repo: https://github.com/python-poetry/poetry
rev: 1.3.1
hooks:
- id: poetry-check
- id: poetry-export
args:
[
"-f",
"requirements.txt",
"--without-hashes",
"--output",
"requirements.txt",
]
verbose: true