Files
nginx-unit-exporter/.pre-commit-config.yaml
Eugene Morozov 3391e2adf2
Some checks failed
Build Docker Image / build-and-deploy-image (push) Failing after 1s
Updated libs
2025-02-25 14:28:39 +02:00

29 lines
615 B
YAML

default_stages: [ pre-commit ]
fail_fast: true
default_language_version:
python: python3.12
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-toml
- id: check-yaml
args:
- --unsafe
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/hadolint/hadolint
rev: v2.13.1-beta
hooks:
- id: hadolint
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.7
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format