summaryrefslogtreecommitdiff
path: root/doc/user_guide
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-12-19 09:31:27 +0100
committerGitHub <noreply@github.com>2022-12-19 09:31:27 +0100
commitedc79e5392b0abfed222631501905ecd7521304e (patch)
tree2a3fda0eed832251abd035827fa4dd31229aa34e /doc/user_guide
parente7d7a1d62ae20763f492d09445b2a5e6ddc4efbf (diff)
downloadpylint-git-edc79e5392b0abfed222631501905ecd7521304e.tar.gz
[doc] Upgrade the doc following the addition of clear-cache-post-run (#7958)
Diffstat (limited to 'doc/user_guide')
-rw-r--r--doc/user_guide/configuration/all-options.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/user_guide/configuration/all-options.rst b/doc/user_guide/configuration/all-options.rst
index c9e651565..85723d6bf 100644
--- a/doc/user_guide/configuration/all-options.rst
+++ b/doc/user_guide/configuration/all-options.rst
@@ -20,6 +20,13 @@ Standard Checkers
**Default:** ``False``
+--clear-cache-post-run
+""""""""""""""""""""""
+*Clear in-memory caches upon conclusion of linting. Useful if running pylint in a server-like mode.*
+
+**Default:** ``False``
+
+
--confidence
""""""""""""
*Only show warnings with the listed confidence levels. Leave empty to show all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE, UNDEFINED.*
@@ -215,6 +222,8 @@ Standard Checkers
[tool.pylint.main]
analyse-fallback-blocks = false
+ clear-cache-post-run = false
+
confidence = ["HIGH", "CONTROL_FLOW", "INFERENCE", "INFERENCE_FAILURE", "UNDEFINED"]
disable = ["consider-using-augmented-assign"]