30 lines
783 B
INI
30 lines
783 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
|
|
R0904, # too-many-public-methods
|
|
R0911, # too-many-statements
|
|
R0912, # too-many-branches
|
|
R0913, # too-many-arguments
|
|
R0914, # too-many-locals
|
|
R0915, # too-many-statements
|
|
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
|