mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-12-16 13:40:53 +08:00
30 lines
690 B
YAML
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 |