As per Pylint documentation, the easiest is to use this chart:
- C convention-related checks
- R refactoring-related checks
- W various warnings
- E errors, for probable bugs in the code
- F fatal, if an error occurred which prevented Pylint from doing further processing.
So one can use:
pylint -j 0 --disable=I,E,R,W,C,F YOUR_FILES_LOC