I'd like to disable the pylint warning for invalid-name
only for the module name.
The warning is: Module name "some-module-name" doesn't conform to camelCase naming style
I can disable the message by putting # pylint: disable=invalid-name
at the top of the file, but this unfortunately disables all invalid-name
errors, not just for the module.
Is there a way to disable the module invalid-name warning only?