diff options
Diffstat (limited to 'pylintrc')
| -rw-r--r-- | pylintrc | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -106,7 +106,7 @@ output-format=text # 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=no # I don't need a score, thanks. @@ -129,7 +129,7 @@ evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / stateme # 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 @@ -189,15 +189,15 @@ bad-functions= # [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 -# List of members which are usually get through zope's acquisition mecanism and +# List of members which are usually get through zope's acquisition mechanism and # so shouldn't trigger E0201 when accessed (need zope=yes to be considered). acquired-members=REQUEST,acl_users,aq_parent @@ -206,11 +206,11 @@ acquired-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 of unused arguments. |
