1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00
gh-buildozer-action/.pre-commit-config.yaml
2020-07-29 16:19:30 +03:00

18 lines
343 B
YAML

# Pre-commit hooks.
# python3 -m pip install pre-commit
# pre-commit install
repos:
# Format Python
- repo: https://github.com/psf/black
rev: stable
hooks:
- id: black
# Sort imports
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21
hooks:
- id: isort
additional_dependencies: ["toml"]