I'm using pylint to run code analysis on my project. However it needs to ignore one of the directories.
The only solutions I have found (eg this one) are several years old, and I have not had luck getting their methods do not work.
What I have tried:
- Using the --ignore flag from command line.
eg: pylint --ignore=directory_name
- Putting an ignore command in the pylintrc file:
ignore=directory_name
- With and without *'s and /'s on the directory names
I will add that I am running pylint on a directory of packages and thus my pylint command looks like:
pylint3 --rcfile=pylintrc ./Data/Scripts/*
I am expecting that the ignore parameter is given higher priority than the "*" when I list the folders for it to search.