2019-08-25 00:27:31 +02: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
|
2020-12-26 12:54:17 +01:00
|
|
|
rev: v3.4.0
|
2019-08-25 00:27:31 +02:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
- id: check-added-large-files
|
|
|
|
|
|
|
|
- repo: https://github.com/ambv/black
|
2020-09-06 14:19:24 +02:00
|
|
|
rev: 20.8b1
|
2019-08-25 00:27:31 +02:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
language_version: python3
|
2020-05-03 11:42:32 +02:00
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
2020-12-26 12:54:17 +01:00
|
|
|
rev: 3.8.4
|
2019-08-25 00:27:31 +02:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2019-08-25 00:33:51 +02:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2020-12-26 12:54:17 +01:00
|
|
|
rev: v2.7.4
|
2019-08-25 00:33:51 +02:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
|
|
|
args: [--py3-plus]
|
2019-08-25 00:40:39 +02:00
|
|
|
- repo: https://github.com/asottile/reorder_python_imports
|
2020-12-26 12:54:17 +01:00
|
|
|
rev: v2.3.6
|
2019-08-25 00:40:39 +02:00
|
|
|
hooks:
|
|
|
|
- id: reorder-python-imports
|
2020-12-26 13:10:56 +01:00
|
|
|
- repo: https://github.com/asottile/add-trailing-comma
|
|
|
|
rev: v2.0.1
|
|
|
|
hooks:
|
|
|
|
- id: add-trailing-comma
|