mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 11:58:37 +09:00
cee6add4d4
updates: - [github.com/pre-commit/mirrors-mypy: v0.990 → v0.991](https://github.com/pre-commit/mirrors-mypy/compare/v0.990...v0.991)
63 lines
1.4 KiB
YAML
63 lines
1.4 KiB
YAML
exclude: "^docs/|/migrations/"
|
|
default_stages: [ commit ]
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.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/psf/black
|
|
rev: 22.10.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
args: [ "--profile", "black", ]
|
|
|
|
- repo: https://github.com/hadialqattan/pycln
|
|
rev: v2.1.2
|
|
hooks:
|
|
- id: pycln
|
|
args: [ --config=setup.cfg ]
|
|
|
|
- repo: https://github.com/PyCQA/docformatter
|
|
rev: v1.5.0
|
|
hooks:
|
|
- id: docformatter
|
|
args: [ --in-place ]
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|
|
args: [ "--config=setup.cfg" ]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.991
|
|
hooks:
|
|
- id: mypy
|
|
args:
|
|
- '--strict'
|
|
additional_dependencies: [ types-requests ]
|