mirror of
https://github.com/ModOrganizer2/python-plugins-doc.git
synced 2026-07-27 14:07:44 -07:00
17 lines
579 B
INI
17 lines
579 B
INI
[flake8]
|
|
# Use black line length:
|
|
max-line-length = 88
|
|
extend-ignore =
|
|
# See https://github.com/PyCQA/pycodestyle/issues/373
|
|
E203,
|
|
per-file-ignores =
|
|
*.pyi: E301, E302, E305, E501, E701, E741, F401, F403, F405, F822
|
|
# Since typing.pyi defines "overload" this is not recognized by flake8 as typing.overload.
|
|
# Unfortunately, flake8 does not allow to "noqa" just a specific error inside the file itself.
|
|
typing.pyi: E301, E302, E305, E501, E701, E741, F401, F403, F405, F811, F822
|
|
|
|
[mypy]
|
|
warn_return_any = True
|
|
warn_unused_configs = True
|
|
namespace_packages = True
|