bugbug/.pre-commit-config.yaml

68 строки
1.8 KiB
YAML
Исходник Обычный вид История

repos:
- repo: https://github.com/asottile/seed-isort-config
2020-05-08 17:16:13 +03:00
rev: v2.1.1
hooks:
- id: seed-isort-config
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: stable
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
2020-05-22 23:30:42 +03:00
rev: 3.8.1
hooks:
- id: flake8
additional_dependencies: ['flake8-coding==1.3.1', 'flake8-copyright==0.2.2', 'flake8-debugger==3.1.0', 'flake8-mypy==17.8.0']
2019-05-14 18:22:34 +03:00
- repo: https://github.com/pre-commit/pre-commit-hooks
2020-05-22 23:30:42 +03:00
rev: v3.1.0
2019-05-14 18:22:34 +03:00
hooks:
- id: check-ast
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-symlinks
- id: debug-statements
2019-05-14 18:22:34 +03:00
- id: trailing-whitespace
- id: check-yaml
- id: mixed-line-ending
- id: name-tests-test
args: ['--django']
- id: check-json
exclude: ^tests/fixtures/
- id: requirements-txt-fixer
- id: check-vcs-permalinks
- repo: https://github.com/codespell-project/codespell
2020-05-22 23:30:42 +03:00
rev: v1.17.1
hooks:
- id: codespell
exclude_types: [json]
- repo: https://github.com/marco-c/taskcluster_yml_validator
2020-05-22 23:30:42 +03:00
rev: v0.0.6
hooks:
- id: taskcluster_yml
- repo: https://github.com/asottile/yesqa
2020-02-26 13:22:43 +03:00
rev: v1.1.0
hooks:
- id: yesqa
- repo: https://github.com/pre-commit/mirrors-mypy
2020-04-02 22:53:03 +03:00
rev: v0.770
hooks:
- id: mypy
name: mypy-bugbug
2020-04-07 13:06:24 +03:00
files: ^bugbug/|^scripts/
entry: mypy bugbug/ scripts/
pass_filenames: false
- id: mypy
name: mypy-bugbug-http
files: ^http_service/
entry: mypy http_service/
pass_filenames: false
2019-06-08 22:24:22 +03:00
- repo: meta
hooks:
- id: check-useless-excludes
default_language_version:
python: python3.7