With every new project i have the same issue with pylint "Missing module docstring warning"
I have already tried adding to settings.json
"python.linting.pylintArgs": [
"--load-plugins=pylint_django",
"--errors-only",
"--disable=C0111"
]
and creating .pylintrc
[MASTER]
disable=
C0114, # missing-module-docstring
The only working solution is to add to EVERY file. But that is tedious. is there a better way?
# pylint: disable=missing-module-docstring