python-template/.pre-commit-config.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2024-04-25 17:46:34 +00:00
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: check-toml # For pyproject.toml
- id: check-yaml # For workflows, and this file
- id: end-of-file-fixer
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: mixed-line-ending
args: [--fix=lf]
- repo: local
hooks:
- id: ruff
name: ruff
description: Run ruff linter
entry: poetry run ruff check --force-exclude
language: system
types_or: [python, pyi]
require_serial: true
args: [--fix, --exit-non-zero-on-fix]
- repo: local
hooks:
- id: ruff-format
name: ruff-format
description: Run ruff formatter
entry: poetry run ruff format
language: system
types_or: [python, pyi]
require_serial: true
2024-06-30 20:03:07 +00:00
- repo: local
hooks:
- id: pyright
name: Pyright
description: Run pyright type checker
entry: poetry run pyright
language: system
types: [python]
pass_filenames: false # pyright runs for the entire project, it can't run for single files