first commit
All checks were successful
Build Docker Image / build-and-deploy-image (push) Successful in 38s

This commit is contained in:
2024-10-13 09:26:56 +03:00
commit cd1d9b4be0
8 changed files with 422 additions and 0 deletions

28
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,28 @@
default_stages: [ 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.12.0
hooks:
- id: hadolint
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format