Add isort to project dev dependencies

This commit is contained in:
Matthias 2020-09-28 17:35:04 +02:00
parent 7623691a5f
commit 287604efd2
3 changed files with 13 additions and 0 deletions

View File

@ -94,6 +94,10 @@ jobs:
run: |
flake8
- name: Sort imports (isort)
run: |
isort --check .
- name: Mypy
run: |
mypy freqtrade scripts
@ -156,6 +160,10 @@ jobs:
run: |
flake8
- name: Sort imports (isort)
run: |
isort --check .
- name: Mypy
run: |
mypy freqtrade scripts

View File

@ -13,6 +13,7 @@ pytest-asyncio==0.14.0
pytest-cov==2.10.1
pytest-mock==3.3.1
pytest-random-order==1.0.4
isort==5.5.3
# Convert jupyter notebooks to markdown documents
nbconvert==6.0.6

View File

@ -8,6 +8,10 @@ exclude =
.eggs,
user_data,
[isort]
line_length=100
multi_line_output=0
[mypy]
ignore_missing_imports = True