1[MASTER] 2 3# Specify a configuration file. 4#rcfile= 5 6# Python code to execute, usually for sys.path manipulation such as 7# pygtk.require(). 8#init-hook= 9 10# Profiled execution. 11profile=no 12 13# Add files or directories to the blacklist. They should be base names, not 14# paths. 15ignore=CVS 16 17# Pickle collected data for later comparisons. 18persistent=yes 19 20# List of plugins (as comma separated values of python modules names) to load, 21# usually to register additional checkers. 22load-plugins= 23 24# Use multiple processes to speed up Pylint. 25jobs=1 26 27# Allow loading of arbitrary C extensions. Extensions are imported into the 28# active Python interpreter and may run arbitrary code. 29unsafe-load-any-extension=no 30 31# A comma-separated list of package or module names from where C extensions may 32# be loaded. Extensions are loading into the active Python interpreter and may 33# run arbitrary code 34extension-pkg-whitelist= 35 36# Allow optimization of some AST trees. This will activate a peephole AST 37# optimizer, which will apply various small optimizations. For instance, it can 38# be used to obtain the result of joining multiple strings with the addition 39# operator. Joining a lot of strings can lead to a maximum recursion error in 40# Pylint and this flag can prevent that. It has one side effect, the resulting 41# AST will be different than the one from reality. 42optimize-ast=no 43 44 45[MESSAGES CONTROL] 46 47# Only show warnings with the listed confidence levels. Leave empty to show 48# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED 49confidence= 50 51# Enable the message, report, category or checker with the given id(s). You can 52# either give multiple identifier separated by comma (,) or put this option 53# multiple time. See also the "--disable" option for examples. 54#enable= 55 56# Disable the message, report, category or checker with the given id(s). You 57# can either give multiple identifiers separated by comma (,) or put this 58# option multiple times (only on the command line, not in the configuration 59# file where it should appear only once).You can also use "--disable=all" to 60# disable everything first and then reenable specific checks. For example, if 61# you want to run only the similarities checker, you can use "--disable=all 62# --enable=similarities". If you want to run only the classes checker, but have 63# no Warning level messages displayed, use"--disable=all --enable=classes 64# --disable=W" 65disable=invalid-name,missing-docstring,too-many-branches,too-many-locals,too-many-arguments,too-many-statements,duplicate-code,too-few-public-methods,too-many-instance-attributes,too-many-lines,too-many-public-methods,locally-disabled,fixme,not-callable 66 67 68[REPORTS] 69 70# Set the output format. Available formats are text, parseable, colorized, msvs 71# (visual studio) and html. You can also give a reporter class, eg 72# mypackage.mymodule.MyReporterClass. 73output-format=text 74 75# Put messages in a separate file for each module / package specified on the 76# command line instead of printing them on stdout. Reports (if any) will be 77# written in a file name "pylint_global.[txt|html]". 78files-output=no 79 80# Tells whether to display a full report or only the messages 81reports=yes 82 83# Python expression which should return a note less than 10 (10 is the highest 84# note). You have access to the variables errors warning, statement which 85# respectively contain the number of errors / warnings messages and the total 86# number of statements analyzed. This is used by the global evaluation report 87# (RP0004). 88evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) 89 90# Add a comment according to your evaluation note. This is used by the global 91# evaluation report (RP0004). 92comment=no 93 94# Template used to display messages. This is a python new-style format string 95# used to format the message information. See doc for all details 96#msg-template= 97 98 99[SIMILARITIES] 100 101# Minimum lines number of a similarity. 102min-similarity-lines=4 103 104# Ignore comments when computing similarities. 105ignore-comments=yes 106 107# Ignore docstrings when computing similarities. 108ignore-docstrings=yes 109 110# Ignore imports when computing similarities. 111ignore-imports=no 112 113 114[TYPECHECK] 115 116# Tells whether missing members accessed in mixin class should be ignored. A 117# mixin class is detected if its name ends with "mixin" (case insensitive). 118ignore-mixin-members=yes 119 120# List of module names for which member attributes should not be checked 121# (useful for modules/projects where namespaces are manipulated during runtime 122# and thus existing member attributes cannot be deduced by static analysis 123ignored-modules= 124 125# List of classes names for which member attributes should not be checked 126# (useful for classes with attributes dynamically set). 127ignored-classes=SQLObject 128 129# When zope mode is activated, add a predefined set of Zope acquired attributes 130# to generated-members. 131zope=no 132 133# List of members which are set dynamically and missed by pylint inference 134# system, and so shouldn't trigger E0201 when accessed. Python regular 135# expressions are accepted. 136generated-members=REQUEST,acl_users,aq_parent 137 138 139[MISCELLANEOUS] 140 141# List of note tags to take in consideration, separated by a comma. 142notes=FIXME,XXX,TODO 143 144 145[BASIC] 146 147# List of builtins function names that should not be used, separated by a comma 148bad-functions=map,filter,input 149 150# Good variable names which should always be accepted, separated by a comma 151good-names=i,j,k,ex,Run,_ 152 153# Bad variable names which should always be refused, separated by a comma 154bad-names=foo,bar,baz,toto,tutu,tata 155 156# Colon-delimited sets of names that determine each other's naming style when 157# the name regexes allow several styles. 158name-group= 159 160# Include a hint for the correct naming format with invalid-name 161include-naming-hint=no 162 163# Regular expression matching correct function names 164function-rgx=[a-z_][a-z0-9_]{2,30}$ 165 166# Naming hint for function names 167function-name-hint=[a-z_][a-z0-9_]{2,30}$ 168 169# Regular expression matching correct variable names 170variable-rgx=[a-z_][a-z0-9_]{2,30}$ 171 172# Naming hint for variable names 173variable-name-hint=[a-z_][a-z0-9_]{2,30}$ 174 175# Regular expression matching correct constant names 176const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ 177 178# Naming hint for constant names 179const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ 180 181# Regular expression matching correct attribute names 182attr-rgx=[a-z_][a-z0-9_]{2,30}$ 183 184# Naming hint for attribute names 185attr-name-hint=[a-z_][a-z0-9_]{2,30}$ 186 187# Regular expression matching correct argument names 188argument-rgx=[a-z_][a-z0-9_]{2,30}$ 189 190# Naming hint for argument names 191argument-name-hint=[a-z_][a-z0-9_]{2,30}$ 192 193# Regular expression matching correct class attribute names 194class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ 195 196# Naming hint for class attribute names 197class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ 198 199# Regular expression matching correct inline iteration names 200inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ 201 202# Naming hint for inline iteration names 203inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ 204 205# Regular expression matching correct class names 206class-rgx=[A-Z_][a-zA-Z0-9]+$ 207 208# Naming hint for class names 209class-name-hint=[A-Z_][a-zA-Z0-9]+$ 210 211# Regular expression matching correct module names 212module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 213 214# Naming hint for module names 215module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 216 217# Regular expression matching correct method names 218method-rgx=[a-z_][a-z0-9_]{2,30}$ 219 220# Naming hint for method names 221method-name-hint=[a-z_][a-z0-9_]{2,30}$ 222 223# Regular expression which should only match function or class names that do 224# not require a docstring. 225no-docstring-rgx=__.*__ 226 227# Minimum line length for functions/classes that require docstrings, shorter 228# ones are exempt. 229docstring-min-length=-1 230 231 232[SPELLING] 233 234# Spelling dictionary name. Available dictionaries: none. To make it working 235# install python-enchant package. 236spelling-dict= 237 238# List of comma separated words that should not be checked. 239spelling-ignore-words= 240 241# A path to a file that contains private dictionary; one word per line. 242spelling-private-dict-file= 243 244# Tells whether to store unknown words to indicated private dictionary in 245# --spelling-private-dict-file option instead of raising a message. 246spelling-store-unknown-words=no 247 248 249[FORMAT] 250 251# Maximum number of characters on a single line. 252max-line-length=80 253 254# Regexp for a line that is allowed to be longer than the limit. 255ignore-long-lines=^\s*(# )?<?https?://\S+>?$ 256 257# Allow the body of an if to be on the same line as the test if there is no 258# else. 259single-line-if-stmt=no 260 261# List of optional constructs for which whitespace checking is disabled 262no-space-check=trailing-comma,dict-separator 263 264# Maximum number of lines in a module 265max-module-lines=1000 266 267# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 268# tab). 269indent-string=' ' 270 271# Number of spaces of indent required inside a hanging or continued line. 272indent-after-paren=4 273 274# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. 275expected-line-ending-format=LF 276 277 278[LOGGING] 279 280# Logging modules to check that the string format arguments are in logging 281# function parameter format 282logging-modules=logging 283 284 285[VARIABLES] 286 287# Tells whether we should check for unused import in __init__ files. 288init-import=no 289 290# A regular expression matching the name of dummy variables (i.e. expectedly 291# not used). 292dummy-variables-rgx=_$|dummy 293 294# List of additional names supposed to be defined in builtins. Remember that 295# you should avoid to define new builtins when possible. 296additional-builtins= 297 298# List of strings which can identify a callback function by name. A callback 299# name must start or end with one of those strings. 300callbacks=cb_,_cb 301 302 303[DESIGN] 304 305# Maximum number of arguments for function / method 306max-args=5 307 308# Argument names that match this expression will be ignored. Default to name 309# with leading underscore 310ignored-argument-names=_.* 311 312# Maximum number of locals for function / method body 313max-locals=15 314 315# Maximum number of return / yield for function / method body 316max-returns=6 317 318# Maximum number of branch for function / method body 319max-branches=12 320 321# Maximum number of statements in function / method body 322max-statements=50 323 324# Maximum number of parents for a class (see R0901). 325max-parents=7 326 327# Maximum number of attributes for a class (see R0902). 328max-attributes=7 329 330# Minimum number of public methods for a class (see R0903). 331min-public-methods=2 332 333# Maximum number of public methods for a class (see R0904). 334max-public-methods=20 335 336 337[IMPORTS] 338 339# Deprecated modules which should not be used, separated by a comma 340deprecated-modules=regsub,TERMIOS,Bastion,rexec 341 342# Create a graph of every (i.e. internal and external) dependencies in the 343# given file (report RP0402 must not be disabled) 344import-graph= 345 346# Create a graph of external dependencies in the given file (report RP0402 must 347# not be disabled) 348ext-import-graph= 349 350# Create a graph of internal dependencies in the given file (report RP0402 must 351# not be disabled) 352int-import-graph= 353 354 355[CLASSES] 356 357# List of method names used to declare (i.e. assign) instance attributes. 358defining-attr-methods=__init__,__new__,setUp 359 360# List of valid names for the first argument in a class method. 361valid-classmethod-first-arg=cls 362 363# List of valid names for the first argument in a metaclass class method. 364valid-metaclass-classmethod-first-arg=mcs 365 366# List of member names, which should be excluded from the protected access 367# warning. 368exclude-protected=_asdict,_fields,_replace,_source,_make 369 370 371[EXCEPTIONS] 372 373# Exceptions that will emit a warning when being caught. Defaults to 374# "Exception" 375overgeneral-exceptions=Exception 376