summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorUnknown <kunda@scribus.net>2017-11-08 20:02:28 -0500
committerUnknown <kunda@scribus.net>2017-11-08 20:02:28 -0500
commit778ccb22e942872c4340ce2326131d38d0676150 (patch)
tree2afb37e8cb341efa2f4c8fdc8d61871f413d3448 /scripts
parentb2dd36b60f307e659a424d322141c6510ae100c2 (diff)
downloadjinja2-778ccb22e942872c4340ce2326131d38d0676150.tar.gz
Trivial typos
Most non-user facing.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/pylintrc12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/pylintrc b/scripts/pylintrc
index 4f85b49..6a5f0d7 100644
--- a/scripts/pylintrc
+++ b/scripts/pylintrc
@@ -1,6 +1,6 @@
# lint Python modules using external checkers.
#
-# This is the main checker controling the other ones and the reports
+# This is the main checker controlling the other ones and the reports
# generation. It is itself both a raw checker and an astng checker in order
# to:
# * handle message activation / deactivation at the module level
@@ -66,12 +66,12 @@ include-ids=yes
# written in a file name "pylint_global.[txt|html]".
files-output=no
-# Tells wether to display a full report or only the messages
+# Tells whether to display a full report or only the messages
reports=yes
# Python expression which should return a note less than 10 (10 is the highest
# note).You have access to the variables errors warning, statement which
-# respectivly contain the number of errors / warnings messages and the total
+# respectively contain the number of errors / warnings messages and the total
# number of statements analyzed. This is used by the global evaluation report
# (R0004).
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
@@ -95,7 +95,7 @@ comment=no
#
[VARIABLES]
-# Tells wether we should check for unused import in __init__ files.
+# Tells whether we should check for unused import in __init__ files.
init-import=no
# A regular expression matching names used for dummy variables (i.e. not used).
@@ -110,7 +110,7 @@ additional-builtins=
#
[TYPECHECK]
-# Tells wether missing members accessed in mixin class should be ignored. A
+# Tells whether missing members accessed in mixin class should be ignored. A
# mixin class is detected if its name ends with "mixin" (case insensitive).
ignore-mixin-members=yes
@@ -241,7 +241,7 @@ int-import-graph=
# checks for :
# * methods without self as first argument
# * overridden methods signature
-# * access only to existant members via self
+# * access only to existent members via self
# * attributes not defined in the __init__ method
# * supported interfaces implementation
# * unreachable code