How can I avoid pylint to mark missing docstring in the main
function, without removing any others from the default, like the __init__
method?
When I run
poetry run pylint src/* --no-docstring-rgx "main"
it overwrites the default value to avoid private methods that start with _
. See the docs here
I don't want to override the default configuration, but add more rules to it. Can't figure out a way to achieve that.