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

19 lines
333 B
YAML
Raw Permalink Normal View History

2020-07-29 15:19:30 +02:00
# 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
2020-12-24 19:16:25 +01:00
- repo: https://github.com/pycqa/isort
rev: 5.6.4
2020-07-29 15:19:30 +02:00
hooks:
- id: isort
additional_dependencies: ["toml"]