Files
docker-py-revanced/.pre-commit-config.yaml
T
pre-commit-ci[bot] 914c2dea23 Update versions of tools in pre-commit configs to latest version
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.3.5 → v0.3.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.5...v0.3.7)
- [github.com/psf/black: 24.3.0 → 24.4.0](https://github.com/psf/black/compare/24.3.0...24.4.0)
2024-04-15 22:50:43 +05:30

78 lines
1.8 KiB
YAML

exclude: "^docs/|/migrations/"
default_stages: [ commit ]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.3.7'
hooks:
- id: ruff
args:
- "--config=pyproject.toml"
- "--fix"
- repo: https://github.com/psf/black
rev: 24.4.0
hooks:
- id: black
args:
- "--config=pyproject.toml"
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args:
- "--settings-path=pyproject.toml"
- repo: https://github.com/hadialqattan/pycln
rev: v2.4.0
hooks:
- id: pycln
args:
- "--config=pyproject.toml"
- repo: https://github.com/PyCQA/docformatter
rev: v1.7.5
hooks:
- id: docformatter
args:
- "--config=pyproject.toml"
- "--in-place"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.9.0
hooks:
- id: mypy
args:
- '--strict'
- "--config=pyproject.toml"
additional_dependencies: [ types-requests,types-beautifulsoup4,types-pytz ]
ci:
autofix_commit_msg: |
🚨 Lint Fixes
autofix_prs: true
autoupdate_commit_msg: |
✨Update versions of tools in pre-commit configs to latest version