mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
30 lines
686 B
YAML
30 lines
686 B
YAML
|
|
repos:
|
||
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
|
rev: v4.3.0
|
||
|
|
hooks:
|
||
|
|
- id: end-of-file-fixer
|
||
|
|
- id: trailing-whitespace
|
||
|
|
|
||
|
|
- repo: https://github.com/pycqa/isort
|
||
|
|
rev: "5.10.1"
|
||
|
|
hooks:
|
||
|
|
- id: isort
|
||
|
|
args: ["--profile", "black"]
|
||
|
|
|
||
|
|
- repo: https://github.com/psf/black
|
||
|
|
rev: 22.6.0
|
||
|
|
hooks:
|
||
|
|
- id: black
|
||
|
|
args: [--target-version=py310]
|
||
|
|
|
||
|
|
- repo: https://github.com/pycqa/flake8
|
||
|
|
rev: '5.0.4'
|
||
|
|
hooks:
|
||
|
|
- id: flake8
|
||
|
|
additional_dependencies:
|
||
|
|
- flake8-bugbear
|
||
|
|
- flake8-comprehensions
|
||
|
|
- flake8-tidy-imports
|
||
|
|
- flake8-print
|
||
|
|
args: [--max-line-length=120]
|