awesome-fastapi-projects/.pre-commit-config.yaml
Vladyslav Fedoriuk a0310ea3b1 Set up tests
2023-07-29 00:17:38 +02:00

45 lines
1.1 KiB
YAML

---
default_language_version:
python: python3.11
default_stages: [ commit ]
fail_fast: false
minimum_pre_commit_version: 3.3.3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: mixed-line-ending
args: [ "--fix=lf" ]
- id: check-yaml
- id: check-added-large-files
- id: check-toml
- id: check-yaml
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.280
hooks:
- id: ruff
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
hooks:
- id: pyupgrade
args: [--py311-plus]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "0.11.1"
hooks:
- id: pyproject-fmt
args: ["--indent=4"]
- repo: https://github.com/jorisroovers/gitlint
rev: 'v0.19.1'
hooks:
- id: gitlint