16 lines
291 B
INI
16 lines
291 B
INI
[isort]
|
|
profile = black
|
|
skip = .venv,.tox
|
|
|
|
[flake8]
|
|
# E203: whitespace before colon on list slice: mylist[1 : 2]
|
|
# E501: line too long (black knows better)
|
|
extend-ignore = E203,E501
|
|
extend-exclude = .venv
|
|
|
|
[mypy]
|
|
no_implicit_optional = True
|
|
|
|
[mypy-xmltodict.*]
|
|
ignore_missing_imports = True
|