2020-02-05 18:59:04 +03:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/psf/black
|
2022-09-05 21:09:19 +03:00
|
|
|
rev: 22.8.0
|
2020-02-05 18:59:04 +03:00
|
|
|
hooks:
|
|
|
|
- id: black
|
2021-10-15 13:07:53 +03:00
|
|
|
args: ["--target-version", "py37"]
|
2020-02-05 18:59:04 +03:00
|
|
|
# Only .py files, until https://github.com/psf/black/issues/402 resolved
|
|
|
|
files: \.py$
|
|
|
|
types: []
|
|
|
|
|
2020-12-20 02:10:47 +03:00
|
|
|
- repo: https://github.com/PyCQA/isort
|
2022-04-01 20:55:03 +03:00
|
|
|
rev: 5.10.1
|
2020-06-06 13:13:11 +03:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
|
|
|
|
- repo: https://github.com/asottile/yesqa
|
2022-09-05 21:09:19 +03:00
|
|
|
rev: v1.4.0
|
2020-06-06 13:13:11 +03:00
|
|
|
hooks:
|
|
|
|
- id: yesqa
|
|
|
|
|
|
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
2022-09-05 21:09:19 +03:00
|
|
|
rev: v1.3.1
|
2020-06-06 13:13:11 +03:00
|
|
|
hooks:
|
|
|
|
- id: remove-tabs
|
|
|
|
exclude: (Makefile$|\.bat$|\.cmake$|\.eps$|\.fits$|\.opt$)
|
|
|
|
|
2021-10-04 19:54:25 +03:00
|
|
|
- repo: https://github.com/PyCQA/flake8
|
2022-09-05 21:09:19 +03:00
|
|
|
rev: 5.0.4
|
2020-02-05 18:59:04 +03:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
|
|
|
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
2022-04-01 20:55:03 +03:00
|
|
|
rev: v1.9.0
|
2020-02-05 18:59:04 +03:00
|
|
|
hooks:
|
|
|
|
- id: python-check-blanket-noqa
|
|
|
|
- id: rst-backticks
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2022-07-04 20:57:12 +03:00
|
|
|
rev: v4.3.0
|
2020-02-05 18:59:04 +03:00
|
|
|
hooks:
|
|
|
|
- id: check-merge-conflict
|
2022-09-08 20:19:13 +03:00
|
|
|
- id: check-json
|
2020-02-05 18:59:04 +03:00
|
|
|
- id: check-yaml
|
2021-08-12 15:36:41 +03:00
|
|
|
|
2022-05-29 19:10:35 +03:00
|
|
|
- repo: https://github.com/sphinx-contrib/sphinx-lint
|
2022-07-04 20:57:12 +03:00
|
|
|
rev: v0.6.1
|
2022-05-29 19:10:35 +03:00
|
|
|
hooks:
|
|
|
|
- id: sphinx-lint
|
|
|
|
|
2021-08-12 15:36:41 +03:00
|
|
|
ci:
|
2022-05-29 13:57:19 +03:00
|
|
|
autoupdate_schedule: monthly
|