Files
nonebot-plugin-marshoai/.pre-commit-config.yaml
pre-commit-ci[bot] 94be23a062 [pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/psf/black: 25.1.0 → 25.9.0](https://github.com/psf/black/compare/25.1.0...25.9.0)
- [github.com/pre-commit/mirrors-mypy: v1.17.1 → v1.18.2](https://github.com/pre-commit/mirrors-mypy/compare/v1.17.1...v1.18.2)
2025-09-22 19:26:24 +00:00

35 lines
777 B
YAML

fail_fast: true
repos:
- repo: local
hooks:
- id: check-filenames
name: Check Python Filenames
entry: python ./.pre-commit/check_filename.py
language: python
files: \.py$
- repo: https://github.com/psf/black
rev: 25.9.0
hooks:
- id: black
args: [--config=./pyproject.toml]
- repo: https://github.com/PyCQA/isort
rev: 6.0.1
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.18.2
hooks:
- id: mypy
# - repo: https://github.com/pre-commit/pre-commit-hooks
# rev: v4.0.1
# hooks:
# - id: trailing-whitespace
# - id: end-of-file-fixer
# - id: check-yaml
# - id: check-added-large-files