Files
app-ethereum/tests/ragger/setup.cfg
Charles-Edouard de la Vergne 6dd70e11a8 Fix python lint
2024-05-07 16:23:55 +02:00

26 lines
621 B
INI

[tool:pytest]
addopts = --strict-markers
[pylint]
disable = C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
C0103, # invalid-name
R0801, # duplicate-code
R0903, # too-few-public-methods
R0913, # too-many-arguments
R0914, # too-many-locals
W0603, # global-statement
E0401 # import-error
extension-pkg-whitelist=hid
max-line-length = 130
[pycodestyle]
max-line-length = 130
[mypy-hid.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True