2020-08-03 19:40:46 +03:00
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2022-07-06 11:45:13 +03:00
|
|
|
rev: v4.3.0
|
2020-08-03 19:40:46 +03:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
- id: check-added-large-files
|
|
|
|
- repo: https://github.com/psf/black
|
2022-07-06 11:45:13 +03:00
|
|
|
rev: 22.6.0
|
2020-08-03 19:40:46 +03:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2022-07-06 11:45:13 +03:00
|
|
|
rev: v0.961
|
2020-08-03 19:40:46 +03:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2022-07-06 11:45:13 +03:00
|
|
|
additional_dependencies: [types-python-slugify==6.1.0]
|
2021-10-09 00:44:11 +03:00
|
|
|
- repo: https://github.com/pycqa/flake8
|
2022-01-25 16:49:39 +03:00
|
|
|
rev: 4.0.1
|
2020-08-03 19:40:46 +03:00
|
|
|
hooks:
|
2021-10-09 00:44:11 +03:00
|
|
|
- id: flake8
|