Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4397352 By: weepdoo
Yes it does in the command line. If I call something like: ">pylint --ignore=my_python_file.py myDirectory/" or ">pylint --ignore=directory_to_ignore myDirectory/" Both work as excepted. But if you call something like: ">pylint --ignore=MyPythonFile.py MyPythonFile.py" The "ignore" statement is not taken into account. That's why, I think (I haven't watch your code) it's because you call "pylint" on every python file of the project (that's all you to parallel pylint quiet easily). So the ignore statement could not work at all. What could be great, is that you add selection windows of files and/or directory to be ignore by your call... ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Pydev-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pydev-users
