style: implement black pre-commit
Browse files- .pre-commit-config.yaml +7 -0
.pre-commit-config.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
repos:
|
| 2 |
+
- repo: https://github.com/psf/black
|
| 3 |
+
rev: 24.10.0
|
| 4 |
+
hooks:
|
| 5 |
+
- id: black
|
| 6 |
+
args: [--line-length=88]
|
| 7 |
+
language_version: python3.12
|