mirror of
https://github.com/FreeOpcUa/opcua-asyncio
synced 2025-10-29 17:07:18 +08:00
19 lines
510 B
INI
19 lines
510 B
INI
[flake8]
|
|
max-line-length = 160
|
|
exclude = uaproto*_auto_add.py, *_auto.py, standard_address_space_services.py
|
|
ignore = E501, W503, W504
|
|
per-file-ignores =
|
|
__init__.py: F401, F403
|
|
examples/*: F841, E402
|
|
[pycodestyle]
|
|
max-line-length = 160
|
|
[mypy]
|
|
disable_error_code = misc, arg-type, assignment, var-annotated
|
|
show_error_codes = True
|
|
check_untyped_defs = False
|
|
[mypy-asyncua.ua.uaprotocol_auto.*]
|
|
# Autogenerated file
|
|
disable_error_code = literal-required
|
|
[mypy-asynctest.*]
|
|
ignore_missing_imports = True
|