Search code examples
pythonwindowspylintpylintrc

Is there a global pylint configuration?


I want to set some pylint settings globally but I don't know if there is an global pylint configuration or where it is...

I know there is an .pylintrc file but it's not a global configuration.

So my question is how to set pylint settings globally.


Solution

  • pylint is meant to be set up per python module, so it is always suggested to have it per module, instead of having it globally, so that you can track these files in git.