We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 079a1c5 commit 3230b43Copy full SHA for 3230b43
Makefile
@@ -10,10 +10,10 @@ black-check:
10
black --diff --check .
11
12
isort:
13
- isort --recursive .
+ isort .
14
15
isort-check:
16
- isort --recursive --check-only .
+ isort --check-only .
17
18
mypy:
19
mypy .
setup.cfg
@@ -22,7 +22,7 @@ install_requires = python-language-server; black>=19.3b0; toml
22
pyls = pyls_black = pyls_black.plugin
23
24
[options.extras_require]
25
-dev = isort; flake8; pytest; mypy; pytest
+dev = isort>=5.0; flake8; pytest; mypy; pytest
26
27
[flake8]
28
max-line-length = 88
@@ -32,4 +32,4 @@ ignore = E203
32
ignore_missing_imports = true
33
34
[isort]
35
-line_length = 88
+profile = black
0 commit comments