Spaces:
Sleeping
Sleeping
File size: 470 Bytes
2f839eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: end-of-file-fixer
- repo: https://github.com/timothycrosley/isort
rev: 5.13.2
hooks:
- id: isort
args: [-w, "140", -lbt, "1"]
- repo: https://github.com/psf/black
rev: 24.1.1
hooks:
- id: black
args: [--config=black.toml]
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
|