Spaces:
Sleeping
Sleeping
Tobias Pasquale
commited on
Commit
·
cd8f8ee
1
Parent(s):
65ab80b
config: Add explicit line-length parameter to black pre-commit hook
Browse filesEnsure black uses --line-length=88 consistently in CI environment.
This should resolve any parameter differences between local and CI black execution.
- .pre-commit-config.yaml +1 -0
.pre-commit-config.yaml
CHANGED
|
@@ -3,6 +3,7 @@ repos:
|
|
| 3 |
rev: 23.9.1
|
| 4 |
hooks:
|
| 5 |
- id: black
|
|
|
|
| 6 |
|
| 7 |
- repo: https://github.com/PyCQA/isort
|
| 8 |
rev: 5.13.0
|
|
|
|
| 3 |
rev: 23.9.1
|
| 4 |
hooks:
|
| 5 |
- id: black
|
| 6 |
+
args: ["--line-length=88"]
|
| 7 |
|
| 8 |
- repo: https://github.com/PyCQA/isort
|
| 9 |
rev: 5.13.0
|