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 = "*"
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]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"