mirror of
https://github.com/ArtemSBulgakov/buildozer-action.git
synced 2024-08-16 10:09:52 +02:00
19 lines
343 B
YAML
19 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"]
|