moved isort config from setup.cfg to pyproject.toml

This commit is contained in:
Blake Harnden 2020-07-14 13:24:16 -07:00
parent fdd2e6f1f1
commit f8b0ab6ec3
2 changed files with 8 additions and 11 deletions

View file

@ -31,6 +31,14 @@ mock = "*"
pre-commit = "*" pre-commit = "*"
pytest = "*" pytest = "*"
[tool.isort]
skip_glob = "*_pb2*.py,doc,build"
multi_line_output = 3
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
line_length = 88
[build-system] [build-system]
requires = ["poetry>=0.12"] requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api" build-backend = "poetry.masonry.api"

View file

@ -1,14 +1,3 @@
[aliases]
test=pytest
[isort]
skip_glob=*_pb2*.py,doc,build
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[flake8] [flake8]
ignore=E501,W503,E203 ignore=E501,W503,E203
max-line-length=88 max-line-length=88