I would like to use pylint to check my code but I am only interested in error and warning levels. Is there a way to do that in command line or in pylintrc?
I am not inte
> python -m pylint --errors-only script_to_validate.py
No config file found, using default configuration
************* Module script_to_validate
E: 7,10: Module 'cv2' has no 'imread' member (no-member)
E: 8,15: Module 'cv2' has no 'threshold' member (no-member)
My settings is Python2.7.6 32 bit & pylint 1.6.4