Files
docker-postgres-backup/.pre-commit-config.yaml
Eugene Morozov fb0187db5d
All checks were successful
Build Docker Image / build-and-deploy-image (pg15) (push) Successful in 1m44s
Build Docker Image / build-and-deploy-image (pg16) (push) Successful in 1m41s
Build Docker Image / build-and-deploy-image (pg17) (push) Successful in 1m43s
Release 0.5: Updated libs
2025-06-07 20:30:38 +03:00

40 lines
813 B
YAML

exclude: 'docs|node_modules|migrations|.git|.tox'
default_stages: [pre-commit]
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: check-ast
- id: end-of-file-fixer
- id: check-yaml
- id: check-toml
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/timothycrosley/isort
rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/kplaube/pre-commit-dodgy
rev: 0.0.2
hooks:
- id: dodgy
- repo: https://github.com/pycqa/flake8
rev: 7.2.0
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py312-plus]