21 lines
497 B
YAML
21 lines
497 B
YAML
# .pre-commit-config.yaml
|
|
repos:
|
|
- repo: https://github.com/python/black.git
|
|
rev: 22.6.0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
name: isort (python)
|
|
language_version: python3
|
|
- repo: https://gitlab.com/pycqa/flake8.git
|
|
rev: 3.9.2
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies:
|
|
- flake8-black>=0.1.1
|
|
language_version: python3
|