moved isort config from setup.cfg to pyproject.toml
This commit is contained in:
parent
fdd2e6f1f1
commit
f8b0ab6ec3
2 changed files with 8 additions and 11 deletions
|
@ -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"
|
||||
|
|
|
@ -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]
|
||||
ignore=E501,W503,E203
|
||||
max-line-length=88
|
||||
|
|
Loading…
Add table
Reference in a new issue