frostfs-testcases/.pre-commit-config.yaml
Vladimir Domnich a7817304d5 Disable pre-commit CI interventions
Disable automatic setting for auto-fixing PRs, we want pre-commit to
be triggered on commits locally. Interventions in PRs are annoying.

Auto-update schedule is set to quarterly, as it takes manual action
to update tools versions in requirements.txt and it would be too
annoying to do that every week.

Signed-off-by: Vladimir Domnich <v.domnich@yadro.com>
2022-11-08 10:53:59 +04:00

15 lines
301 B
YAML

repos:
- repo: https://github.com/psf/black
rev: 22.8.0
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort (python)
ci:
autofix_prs: false
autoupdate_schedule: quarterly