aiogram/.pre-commit-config.yaml

41 lines
936 B
YAML
Raw Normal View History

2020-05-06 13:00:06 +03:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
2020-05-06 13:00:06 +03:00
hooks:
- id: "trailing-whitespace"
- id: "check-case-conflict"
- id: "check-merge-conflict"
- id: "debug-statements"
- id: "end-of-file-fixer"
- id: "mixed-line-ending"
- id: "check-yaml"
- id: "detect-private-key"
- id: "check-toml"
2020-05-06 13:00:06 +03:00
- repo: https://github.com/psf/black
rev: 22.6.0
2020-05-06 13:00:06 +03:00
hooks:
- id: black
files: &files '^(aiogram|tests|examples)'
2020-05-06 13:00:06 +03:00
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
2020-05-06 13:00:06 +03:00
hooks:
- id: isort
additional_dependencies: [ toml ]
files: *files
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
2020-05-06 13:04:40 +03:00
hooks:
- id: flake8
args: [ '--config=.flake8' ]
files: *files
- repo: https://github.com/floatingpurr/sync_with_poetry
rev: 0.2.0
hooks:
- id: sync_with_poetry