Skip to content

Tag: pylint

pylint: Exclude directory

Suppose I have the following directory structure: I want to run pylint on everything, except the directory bdir/adir. Is there any way to do this? Things that do not work: –ignore=bdir/adir –ignore_patterns=.*bdir/adir.* Any of the answers in this similar post –ignore=adir (this will ignore …

How can I install the pylint for python2.7?

I try to install the pylint for the python2.7 which in ubuntu 18.04, but it raises an error with this words: I have been used the pip3 installed the pylint successfully for python3.6. So, how can I install the pylint for python2.7? Answer pylint still maintains support for Python 2 until maybe next year or so…