17 lines
328 B
TOML
17 lines
328 B
TOML
[tool.isort]
|
|
line_length = 120
|
|
multi_line_output = 5
|
|
skip = []
|
|
known_first_party = []
|
|
|
|
[tool.flake8]
|
|
max_line_length = 120
|
|
exclude = [ ".git", ".pytest_cache", ".tox", ".venv", "__pycache__", "venv" ]
|
|
ignore = [ "E501" ]
|
|
|
|
[tool.autopep8]
|
|
max_line_length = 120
|
|
ignore = [ "E501" ]
|
|
in-place = true
|
|
recursive = true
|
|
aggressive = 3
|