34 lines
912 B
YAML
34 lines
912 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: debug-statements
|
|
- id: double-quote-string-fixer
|
|
- id: name-tests-test
|
|
- repo: https://github.com/asottile/reorder-python-imports
|
|
rev: v3.12.0
|
|
hooks:
|
|
- id: reorder-python-imports
|
|
args: [--py38-plus, --add-import, 'from __future__ import annotations']
|
|
- repo: https://github.com/hhatto/autopep8
|
|
rev: v2.0.4
|
|
hooks:
|
|
- id: autopep8
|
|
- repo: https://github.com/asottile/add-trailing-comma
|
|
rev: v3.1.0
|
|
hooks:
|
|
- id: add-trailing-comma
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: v0.1.14
|
|
hooks:
|
|
- id: ruff
|
|
args: [ --fix ]
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.8.0
|
|
hooks:
|
|
- id: mypy
|