summaryrefslogtreecommitdiff
path: root/doc/faq.rst
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-04-18 09:02:24 +0200
committerDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-18 10:11:30 +0200
commit39de57104d93e10a46a145787caf00ff38655e57 (patch)
treedeee742c61ce4632a9de210f4fde964a71f3d7f7 /doc/faq.rst
parentc0c086a6356956a03663d1241113df2076888cfd (diff)
downloadpylint-git-39de57104d93e10a46a145787caf00ff38655e57.tar.gz
[doc] Format the example of disable in pylintrc
Diffstat (limited to 'doc/faq.rst')
-rw-r--r--doc/faq.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/faq.rst b/doc/faq.rst
index 0992cd7d6..5a9bceffb 100644
--- a/doc/faq.rst
+++ b/doc/faq.rst
@@ -200,11 +200,11 @@ 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 wildcard-import, method-hidden and too-many-lines because I do
- # not want it
- disable= wildcard-import,
- method-hidden,
- too-many-lines
+ # disable wildcard-import, method-hidden and too-many-lines
+ disable=
+ wildcard-import,
+ method-hidden,
+ too-many-lines
4.7 Why are there a bunch of messages disabled by default?