From 0b93ad021f3e0a4a21da9a415642f7b9aac3a3da Mon Sep 17 00:00:00 2001 From: Sylvain Th?nault Date: Fri, 11 Apr 2014 10:54:20 +0200 Subject: don't promote inline comment in rc file their situation w/ ConfigParser is somewhat fuzzy, and we don't want to promote them in pylintrc, so simply show whole line comments. Closes #150 --- doc/faq.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/faq.rst b/doc/faq.rst index ce5102d..ce6e84e 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -185,9 +185,10 @@ variable for unused argument ("_" and "dummy" by default). Pylint uses ConfigParser from the standard library to parse the configuration file. It means that if you need to disable a lot of messages, you can use tricks like: :: - disable= W0401, # because I do not want it - E0202, # I have a good reason, trust me - C0302 # that's it + # disable W0401, E0202 and C0302 because I do not want it + disable= W0401, + E0202, + C0302 4.7 Why do I get a lot of spurious "unused variables messages" when using psyobj from psyco_? ---------------------------------------------------------------------------------------------- -- cgit v1.2.1