Files
resume/.pre-commit-config.yaml
Pavel Sobolev 80911bd538 add tests
2025-11-13 21:30:45 +03:00

49 lines
1.2 KiB
YAML

repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.6.9
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies:
- "django>=5.2.8,<6.0.0"
- "python-dotenv>=1.0.1,<2.0.0"
- django-stubs
- djangorestframework-stubs
- pandas-stubs
- repo: https://github.com/PyCQA/bandit
rev: 1.7.9
hooks:
- id: bandit
args: ["-r",".","-x",".venv,venv,build,dist,.tox,.mypy_cache,.ruff_cache,node_modules,**/tests/**"]
additional_dependencies:
- "python-dotenv>=1.0.1,<2.0.0"
pass_filenames: false
- repo: https://github.com/pypa/pip-audit
rev: v2.7.3
hooks:
- id: pip-audit
args: ["--progress-spinner=off"]
pass_filenames: false
- repo: https://github.com/jendrikseipp/vulture
rev: "v2.11"
hooks:
- id: vulture
args: [".","--exclude",".venv,venv,build,dist,.tox,.mypy_cache,.ruff_cache,node_modules,**/migrations/**","--min-confidence","80"]
- repo: local
hooks:
- id: pytest
name: pytest (unit+integration)
entry: poetry run pytest -q
language: system
pass_filenames: false
stages: [commit]