1

I can't find a simple ~/.pylintrc file for ignoring everything but errors.

Currently I have it set to this:

[MESSAGES CONTROL]
disable=W

From this similar stackoverflow answer. In theory this should remove warnings but it doesn't work for me, even after reloading window.

I want only errors to be shown (in red) not warnings (in green)

enter image description here

Vincent Tang
  • 3,758
  • 6
  • 45
  • 63

1 Answers1

2

I was trying to solve the same thing! Your post helped me on the trail.

pylint has several categories of checks:

  • 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, if you want to block everything except E and F, in ~/.pylintrc do:

[MESSAGES CONTROL]
disable=C,R,W
Bill
  • 106
  • 5