summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2022-07-05 20:37:28 +0300
committerGitHub <noreply@github.com>2022-07-05 19:37:28 +0200
commit1c5777f37f227f927549abcb0fcf846ea60ca682 (patch)
tree1af7a0aa2f1ce280d7f4d84fd02eeef19746e1cf /examples
parent14b3363ffda4014b0f390ef4b2008843b2db8287 (diff)
downloadpylint-git-1c5777f37f227f927549abcb0fcf846ea60ca682.tar.gz
doc(fail-under): rephrase description (#7102)
To exceed a threshold here sonds to me as if the score would have to be _above_ the threshold, which is the opposite of what actually happens. Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc2
-rw-r--r--examples/pyproject.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 8199d6d5a..8bf0ca71e 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -34,7 +34,7 @@ extension-pkg-whitelist=
# specified are enabled, while categories only check already-enabled messages.
fail-on=
-# Specify a score threshold to be exceeded before program exits with error.
+# Specify a score threshold under which the program will exit with error.
fail-under=10
# Interpret the stdin as a python script, whose filename needs to be passed as
diff --git a/examples/pyproject.toml b/examples/pyproject.toml
index 5e19f11c6..0339afe14 100644
--- a/examples/pyproject.toml
+++ b/examples/pyproject.toml
@@ -24,7 +24,7 @@
# specified are enabled, while categories only check already-enabled messages.
# fail-on =
-# Specify a score threshold to be exceeded before program exits with error.
+# Specify a score threshold under which the program will exit with error.
fail-under = 10
# Interpret the stdin as a python script, whose filename needs to be passed as