summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 15:15:26 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 15:15:26 +0100
commit43e8f817074a0e2e865f4a061ba3956313ebe8e5 (patch)
tree75b8e46b8ecb0eda33e42eb5ad13167119990f7b /examples
parent2269b04a72bab0e1d0a5e290a4facf5636509281 (diff)
downloadpylint-43e8f817074a0e2e865f4a061ba3956313ebe8e5.tar.gz
include Dotan Barak spell fixes patch
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 6ed593f..b863456 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -70,12 +70,12 @@ include-ids=no
# 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,12 +95,12 @@ comment=no
#
[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
# List of classes names for which member attributes should not be checked
-# (useful for classes with attributes dynamicaly set).
+# (useful for classes with attributes dynamically set).
ignored-classes=SQLObject
# When zope mode is activated, add a predefined set of Zope acquired attributes
@@ -116,11 +116,11 @@ generated-members=REQUEST,acl_users,aq_parent
# * unused variables / imports
# * undefined variables
# * redefinition of variable from builtins or from an outer scope
-# * use of variable before assigment
+# * use of variable before assignment
#
[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).
@@ -134,7 +134,7 @@ additional-builtins=
# checks for :
# * doc strings
# * modules / classes / functions / methods / arguments / variables name
-# * number of arguments, local variables, branchs, returns and statements in
+# * number of arguments, local variables, branches, returns and statements in
# functions, methods
# * required module attributes
# * dangerous default values as arguments
@@ -225,7 +225,7 @@ max-public-methods=20
# 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