File size: 388 Bytes
67f7ef2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[tool.pylint.format]
good-names = [
'x', 'y', 'z', 'id', 'ok'
]
[tool.pylint.messages_control]
disable = [
'missing-module-docstring',
'no-name-in-module',
'useless-import-alias',
'line-too-long',
'too-many-arguments',
'too-few-public-methods'
]
[tool.pyright]
reportUnknownVariableType = false
reportUnknownMemberType = false
reportMissingTypeStubs = false
|