fixing bugs with ci pipeline
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user