зеркало из https://github.com/mozilla/bugbug.git
89 строки
2.5 KiB
YAML
89 строки
2.5 KiB
YAML
repos:
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.12.0
|
|
hooks:
|
|
- id: isort
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.1.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v2.6.2
|
|
hooks:
|
|
- id: prettier
|
|
exclude: ^tests/fixtures/
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies:
|
|
- "flake8-coding==1.3.2"
|
|
- "flake8-copyright==0.2.3"
|
|
- "flake8-debugger==4.1.2"
|
|
- "flake8-mypy==17.8.0"
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: check-ast
|
|
- id: check-docstring-first
|
|
- id: check-executables-have-shebangs
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- id: debug-statements
|
|
- id: trailing-whitespace
|
|
exclude: ^tests/test_repository.py
|
|
- 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
|
|
rev: v2.2.2
|
|
hooks:
|
|
- id: codespell
|
|
exclude_types: [json]
|
|
- repo: https://github.com/marco-c/taskcluster_yml_validator
|
|
rev: v0.0.9
|
|
hooks:
|
|
- id: taskcluster_yml
|
|
- repo: https://github.com/asottile/yesqa
|
|
rev: v1.4.0
|
|
hooks:
|
|
- id: yesqa
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.950
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy-bugbug
|
|
files: ^bugbug/|^scripts/|^tests/
|
|
entry: mypy bugbug/ scripts/ tests/
|
|
pass_filenames: false
|
|
additional_dependencies:
|
|
- types-pkg_resources==0.1.2
|
|
- types-python-dateutil==0.1.3
|
|
- types-PyYAML==5.4.0
|
|
- types-orjson==0.1.0
|
|
- types-tabulate==0.1.0
|
|
- types-requests==0.1.11
|
|
- id: mypy
|
|
name: mypy-bugbug-http
|
|
files: ^http_service/
|
|
entry: mypy http_service/
|
|
pass_filenames: false
|
|
additional_dependencies:
|
|
- types-pkg_resources==0.1.2
|
|
- types-requests==0.1.11
|
|
- types-Flask==1.1.0
|
|
- types-redis==3.5.1
|
|
- types-python-dateutil==0.1.3
|
|
- types-orjson==0.1.0
|
|
- types-tabulate==0.1.0
|
|
- repo: meta
|
|
hooks:
|
|
- id: check-useless-excludes
|
|
default_language_version:
|
|
python: python3
|