fixing bugs with ci pipeline

This commit is contained in:
GotthardG
2024-12-16 22:50:04 +01:00
parent e0e176881b
commit 0178de96fd
14 changed files with 145 additions and 96 deletions

View File

@ -4,7 +4,13 @@ repos:
hooks:
- id: black
name: Black code formatter
args: ["--check"] # Only check formatting without modifying
args: ["--line-length", "88"] # Actively fix code, no --check
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v2.0.4 # Use a specific stable version
hooks:
- id: autopep8
args: [ "--in-place", "--aggressive", "--max-line-length=88" ]
- repo: https://github.com/pycqa/flake8
rev: 6.1.0 # Use the latest stable version of flake8