2019-10-29 17:47:27 +03:00
|
|
|
exclude: 'docs|node_modules|migrations|.git|.tox'
|
|
|
|
default_stages: [commit]
|
|
|
|
fail_fast: true
|
|
|
|
|
|
|
|
repos:
|
2020-05-01 21:10:42 +03:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2020-12-16 03:27:10 +03:00
|
|
|
rev: v3.4.0
|
2019-10-29 17:47:27 +03:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
2020-05-01 21:10:42 +03:00
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
2019-10-29 17:47:27 +03:00
|
|
|
|
2020-05-01 21:10:42 +03:00
|
|
|
- repo: https://github.com/psf/black
|
2020-08-27 03:22:07 +03:00
|
|
|
rev: 20.8b1
|
2020-05-01 21:10:42 +03:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
|
2020-08-04 18:06:37 +03:00
|
|
|
- repo: https://github.com/timothycrosley/isort
|
2021-01-01 03:39:49 +03:00
|
|
|
rev: 5.7.0
|
2020-08-04 18:06:37 +03:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
|
2020-05-01 21:10:42 +03:00
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
2020-10-03 03:26:55 +03:00
|
|
|
rev: 3.8.4
|
2019-10-29 17:47:27 +03:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2020-02-24 16:16:01 +03:00
|
|
|
args: ['--config=setup.cfg']
|
2020-05-01 21:10:42 +03:00
|
|
|
additional_dependencies: [flake8-isort]
|
2019-10-29 17:47:27 +03:00
|
|
|
|