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