22 lines
527 B
YAML
22 lines
527 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.6.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-toml
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.6.8
|
|
hooks:
|
|
# Run the linter.
|
|
- id: ruff
|
|
# Run the formatter.
|
|
- id: ruff-format
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.11.2
|
|
hooks:
|
|
- id: mypy
|
|
files: ^(src/cloudevents/)
|
|
types: [ python ]
|
|
args: [ ]
|