This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/.pre-commit-config.yaml

24 lines
701 B
YAML
Raw Permalink Normal View History

2024-08-16 22:12:49 +02:00
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
2024-02-03 22:07:20 +01:00
repos:
2024-08-16 22:12:49 +02:00
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
2024-02-03 22:07:20 +01:00
hooks:
2024-08-16 22:12:49 +02:00
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
2024-02-03 22:07:20 +01:00
hooks:
2024-08-16 22:12:49 +02:00
- id: add-trailing-comma
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.13.0
hooks:
- id: reorder-python-imports
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.5
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]