Files

30 lines
783 B
INI
Raw Permalink Normal View History

[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
2024-04-30 17:34:57 +02:00
R0903, # too-few-public-methods
R0904, # too-many-public-methods
R0911, # too-many-statements
R0912, # too-many-branches
2024-04-30 17:34:57 +02:00
R0913, # too-many-arguments
R0914, # too-many-locals
2024-06-11 10:59:14 +02:00
R0915, # too-many-statements
2024-04-30 17:34:57 +02:00
W0603, # global-statement
E0401 # import-error
extension-pkg-whitelist=hid
2024-04-30 17:34:57 +02:00
max-line-length = 130
[pycodestyle]
2024-04-30 17:34:57 +02:00
max-line-length = 130
[mypy-hid.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True