summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2014-04-11 10:54:20 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2014-04-11 10:54:20 +0200
commit0b93ad021f3e0a4a21da9a415642f7b9aac3a3da (patch)
tree0e4e13a949c7a45611d1fc7032e909bb45a1b810 /doc
parent1d3463e7fa9c8d87fab080b4c0ecf20b8ae69951 (diff)
downloadpylint-0b93ad021f3e0a4a21da9a415642f7b9aac3a3da.tar.gz
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
Diffstat (limited to 'doc')
-rw-r--r--doc/faq.rst7
1 files changed, 4 insertions, 3 deletions
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_?
----------------------------------------------------------------------------------------------