Project editing and testing configuration bumpf
This commit is contained in:
parent
4011c1fa47
commit
2e4b981aa7
8 changed files with 139 additions and 0 deletions
17
pyproject.toml
Normal file
17
pyproject.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[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
|
||||
Loading…
Add table
Add a link
Reference in a new issue