mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
chore: disable out of scope pylint rules (#478)
##### SUMMARY Disable some pylint rules that are out of scope for the time being, to stop polluting the pylint errors report. Those might be re-enabled at a later stage.
This commit is contained in:
parent
4bb02b9cd2
commit
0d7164a9f6
1 changed files with 5 additions and 0 deletions
|
@ -25,4 +25,9 @@ good-names = ["i", "j", "k", "ex", "_", "ip", "id"]
|
||||||
[tool.pylint.messages_control]
|
[tool.pylint.messages_control]
|
||||||
disable = [
|
disable = [
|
||||||
"wrong-import-position",
|
"wrong-import-position",
|
||||||
|
"missing-module-docstring",
|
||||||
|
"missing-class-docstring",
|
||||||
|
"missing-function-docstring",
|
||||||
|
"duplicate-code",
|
||||||
|
"use-dict-literal",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue