Pylint is a Python source code analyzer looking for bugs and signs of poor quality.
I'm using python-mode for Vim, I prefer for there to be 120 character lines rather than the stark 80 as defined in …
python vim pylint python-mode syntasticI would like to use pylint to check my code but I am only interested in error and warning levels. …
python pylintI used pylint to check my python code, and found this convention problem: C:11, 0: Wrong continued indentation before block. + this_…
python coding-style pylintIn Python, if some methods of a class need a helper function, but the helper function itself doesn't use anything …
python class pylintFor a block like this: try: #some stuff except Exception: pass pylint raises warning W0703 'Catch "Exception"'. Why?
python pylintI am trying to properly indent following piece of code: RULES_LIST = [ ('Name1', 1, 'Long string upto 40 chars'), ('Name2', 2, …
python indentation pylint pep8I've seen How can you find unused functions in Python code? but that's really old, and doesn't really answer my …
python pylint code-cleanupIn Python, prefixing with one underscore indicates that a member should not be accessed outside of its class. This seems …
python private-members pylintI have a Python function that takes a list as a parameter. If I set the parameter's default value to …
python default-value pylintPylint W0603 states: Using the global statement. Used when you use the "global" statement to update a global variable. PyLint …
python global-variables global pylint