Add isort
Browse files- .isort.cfg +2 -0
- .pre-commit-config.yaml +4 -0
.isort.cfg
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[settings]
|
| 2 |
+
profile=black
|
.pre-commit-config.yaml
CHANGED
|
@@ -12,6 +12,10 @@ repos:
|
|
| 12 |
rev: 23.3.0
|
| 13 |
hooks:
|
| 14 |
- id: black
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
- repo: https://github.com/PyCQA/flake8
|
| 16 |
rev: 6.0.0
|
| 17 |
hooks:
|
|
|
|
| 12 |
rev: 23.3.0
|
| 13 |
hooks:
|
| 14 |
- id: black
|
| 15 |
+
- repo: https://github.com/pycqa/isort
|
| 16 |
+
rev: 5.12.0
|
| 17 |
+
hooks:
|
| 18 |
+
- id: isort
|
| 19 |
- repo: https://github.com/PyCQA/flake8
|
| 20 |
rev: 6.0.0
|
| 21 |
hooks:
|