Diff of /autoencoder/.pylintrc [000000] .. [4807fa]

Switch to unified view

a b/autoencoder/.pylintrc
1
[MASTER]
2
3
# A comma-separated list of package or module names from where C extensions may
4
# be loaded. Extensions are loading into the active Python interpreter and may
5
# run arbitrary code
6
extension-pkg-whitelist=
7
8
# Add files or directories to the blacklist. They should be base names, not
9
# paths.
10
ignore=CVS
11
12
# Add files or directories matching the regex patterns to the blacklist. The
13
# regex matches against base names, not paths.
14
ignore-patterns=
15
16
# Python code to execute, usually for sys.path manipulation such as
17
# pygtk.require().
18
#init-hook=
19
20
# Use multiple processes to speed up Pylint.
21
jobs=1
22
23
# List of plugins (as comma separated values of python modules names) to load,
24
# usually to register additional checkers.
25
load-plugins=
26
27
# Pickle collected data for later comparisons.
28
persistent=yes
29
30
# Specify a configuration file.
31
#rcfile=
32
33
# When enabled, pylint would attempt to guess common misconfiguration and emit
34
# user-friendly hints instead of false-positive error messages
35
suggestion-mode=yes
36
37
# Allow loading of arbitrary C extensions. Extensions are imported into the
38
# active Python interpreter and may run arbitrary code.
39
unsafe-load-any-extension=no
40
41
42
[MESSAGES CONTROL]
43
44
# Only show warnings with the listed confidence levels. Leave empty to show
45
# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
46
confidence=
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=print-statement,
58
        parameter-unpacking,
59
        unpacking-in-except,
60
        old-raise-syntax,
61
        backtick,
62
        long-suffix,
63
        old-ne-operator,
64
        old-octal-literal,
65
        import-star-module-level,
66
        non-ascii-bytes-literal,
67
        raw-checker-failed,
68
        bad-inline-option,
69
        locally-disabled,
70
        locally-enabled,
71
        file-ignored,
72
        suppressed-message,
73
        useless-suppression,
74
        deprecated-pragma,
75
        apply-builtin,
76
        basestring-builtin,
77
        buffer-builtin,
78
        cmp-builtin,
79
        coerce-builtin,
80
        execfile-builtin,
81
        file-builtin,
82
        long-builtin,
83
        raw_input-builtin,
84
        reduce-builtin,
85
        standarderror-builtin,
86
        unicode-builtin,
87
        xrange-builtin,
88
        coerce-method,
89
        delslice-method,
90
        getslice-method,
91
        setslice-method,
92
        no-absolute-import,
93
        old-division,
94
        dict-iter-method,
95
        dict-view-method,
96
        next-method-called,
97
        metaclass-assignment,
98
        indexing-exception,
99
        raising-string,
100
        reload-builtin,
101
        oct-method,
102
        hex-method,
103
        nonzero-method,
104
        cmp-method,
105
        input-builtin,
106
        round-builtin,
107
        intern-builtin,
108
        unichr-builtin,
109
        map-builtin-not-iterating,
110
        zip-builtin-not-iterating,
111
        range-builtin-not-iterating,
112
        filter-builtin-not-iterating,
113
        using-cmp-argument,
114
        eq-without-hash,
115
        div-method,
116
        idiv-method,
117
        rdiv-method,
118
        exception-message-attribute,
119
        invalid-str-codec,
120
        sys-max-int,
121
        bad-python3-import,
122
        deprecated-string-function,
123
        deprecated-str-translate-call,
124
        deprecated-itertools-function,
125
        deprecated-types-field,
126
        next-method-defined,
127
        dict-items-not-iterating,
128
        dict-keys-not-iterating,
129
        dict-values-not-iterating
130
131
# Enable the message, report, category or checker with the given id(s). You can
132
# either give multiple identifier separated by comma (,) or put this option
133
# multiple time (only on the command line, not in the configuration file where
134
# it should appear only once). See also the "--disable" option for examples.
135
enable=c-extension-no-member
136
137
138
[REPORTS]
139
140
# Python expression which should return a note less than 10 (10 is the highest
141
# note). You have access to the variables errors warning, statement which
142
# respectively contain the number of errors / warnings messages and the total
143
# number of statements analyzed. This is used by the global evaluation report
144
# (RP0004).
145
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
146
147
# Template used to display messages. This is a python new-style format string
148
# used to format the message information. See doc for all details
149
#msg-template=
150
151
# Set the output format. Available formats are text, parseable, colorized, json
152
# and msvs (visual studio).You can also give a reporter class, eg
153
# mypackage.mymodule.MyReporterClass.
154
output-format=text
155
156
# Tells whether to display a full report or only the messages
157
reports=no
158
159
# Activate the evaluation score.
160
score=yes
161
162
163
[REFACTORING]
164
165
# Maximum number of nested blocks for function / method body
166
max-nested-blocks=5
167
168
# Complete name of functions that never returns. When checking for
169
# inconsistent-return-statements if a never returning function is called then
170
# it will be considered as an explicit return statement and no message will be
171
# printed.
172
never-returning-functions=optparse.Values,sys.exit
173
174
175
[BASIC]
176
177
# Naming style matching correct argument names
178
argument-naming-style=snake_case
179
180
# Regular expression matching correct argument names. Overrides argument-
181
# naming-style
182
#argument-rgx=
183
184
# Naming style matching correct attribute names
185
attr-naming-style=snake_case
186
187
# Regular expression matching correct attribute names. Overrides attr-naming-
188
# style
189
#attr-rgx=
190
191
# Bad variable names which should always be refused, separated by a comma
192
bad-names=foo,
193
          bar,
194
          baz,
195
          toto,
196
          tutu,
197
          tata
198
199
# Naming style matching correct class attribute names
200
class-attribute-naming-style=any
201
202
# Regular expression matching correct class attribute names. Overrides class-
203
# attribute-naming-style
204
#class-attribute-rgx=
205
206
# Naming style matching correct class names
207
class-naming-style=PascalCase
208
209
# Regular expression matching correct class names. Overrides class-naming-style
210
#class-rgx=
211
212
# Naming style matching correct constant names
213
const-naming-style=UPPER_CASE
214
215
# Regular expression matching correct constant names. Overrides const-naming-
216
# style
217
#const-rgx=
218
219
# Minimum line length for functions/classes that require docstrings, shorter
220
# ones are exempt.
221
docstring-min-length=-1
222
223
# Naming style matching correct function names
224
function-naming-style=snake_case
225
226
# Regular expression matching correct function names. Overrides function-
227
# naming-style
228
#function-rgx=
229
230
# Good variable names which should always be accepted, separated by a comma
231
good-names=i,
232
           j,
233
           k,
234
           ex,
235
           Run,
236
           _
237
238
# Include a hint for the correct naming format with invalid-name
239
include-naming-hint=no
240
241
# Naming style matching correct inline iteration names
242
inlinevar-naming-style=any
243
244
# Regular expression matching correct inline iteration names. Overrides
245
# inlinevar-naming-style
246
#inlinevar-rgx=
247
248
# Naming style matching correct method names
249
method-naming-style=snake_case
250
251
# Regular expression matching correct method names. Overrides method-naming-
252
# style
253
#method-rgx=
254
255
# Naming style matching correct module names
256
module-naming-style=snake_case
257
258
# Regular expression matching correct module names. Overrides module-naming-
259
# style
260
#module-rgx=
261
262
# Colon-delimited sets of names that determine each other's naming style when
263
# the name regexes allow several styles.
264
name-group=
265
266
# Regular expression which should only match function or class names that do
267
# not require a docstring.
268
no-docstring-rgx=^_
269
270
# List of decorators that produce properties, such as abc.abstractproperty. Add
271
# to this list to register other decorators that produce valid properties.
272
property-classes=abc.abstractproperty
273
274
# Naming style matching correct variable names
275
variable-naming-style=snake_case
276
277
# Regular expression matching correct variable names. Overrides variable-
278
# naming-style
279
#variable-rgx=
280
281
282
[FORMAT]
283
284
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
285
expected-line-ending-format=
286
287
# Regexp for a line that is allowed to be longer than the limit.
288
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
289
290
# Number of spaces of indent required inside a hanging  or continued line.
291
indent-after-paren=4
292
293
# String used as indentation unit. This is usually "    " (4 spaces) or "\t" (1
294
# tab).
295
indent-string='    '
296
297
# Maximum number of characters on a single line.
298
max-line-length=100
299
300
# Maximum number of lines in a module
301
max-module-lines=1000
302
303
# List of optional constructs for which whitespace checking is disabled. `dict-
304
# separator` is used to allow tabulation in dicts, etc.: {1  : 1,\n222: 2}.
305
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
306
# `empty-line` allows space-only lines.
307
no-space-check=trailing-comma,
308
               dict-separator
309
310
# Allow the body of a class to be on the same line as the declaration if body
311
# contains single statement.
312
single-line-class-stmt=no
313
314
# Allow the body of an if to be on the same line as the test if there is no
315
# else.
316
single-line-if-stmt=no
317
318
319
[LOGGING]
320
321
# Logging modules to check that the string format arguments are in logging
322
# function parameter format
323
logging-modules=logging
324
325
326
[MISCELLANEOUS]
327
328
# List of note tags to take in consideration, separated by a comma.
329
notes=FIXME,
330
      XXX,
331
      TODO
332
333
334
[SIMILARITIES]
335
336
# Ignore comments when computing similarities.
337
ignore-comments=yes
338
339
# Ignore docstrings when computing similarities.
340
ignore-docstrings=yes
341
342
# Ignore imports when computing similarities.
343
ignore-imports=no
344
345
# Minimum lines number of a similarity.
346
min-similarity-lines=4
347
348
349
[SPELLING]
350
351
# Limits count of emitted suggestions for spelling mistakes
352
max-spelling-suggestions=4
353
354
# Spelling dictionary name. Available dictionaries: none. To make it working
355
# install python-enchant package.
356
spelling-dict=
357
358
# List of comma separated words that should not be checked.
359
spelling-ignore-words=
360
361
# A path to a file that contains private dictionary; one word per line.
362
spelling-private-dict-file=
363
364
# Tells whether to store unknown words to indicated private dictionary in
365
# --spelling-private-dict-file option instead of raising a message.
366
spelling-store-unknown-words=no
367
368
369
[TYPECHECK]
370
371
# List of decorators that produce context managers, such as
372
# contextlib.contextmanager. Add to this list to register other decorators that
373
# produce valid context managers.
374
contextmanager-decorators=contextlib.contextmanager
375
376
# List of members which are set dynamically and missed by pylint inference
377
# system, and so shouldn't trigger E1101 when accessed. Python regular
378
# expressions are accepted.
379
generated-members=torch.*
380
381
# Tells whether missing members accessed in mixin class should be ignored. A
382
# mixin class is detected if its name ends with "mixin" (case insensitive).
383
ignore-mixin-members=yes
384
385
# This flag controls whether pylint should warn about no-member and similar
386
# checks whenever an opaque object is returned when inferring. The inference
387
# can return multiple potential results while evaluating a Python object, but
388
# some branches might not be evaluated, which results in partial inference. In
389
# that case, it might be useful to still emit no-member and other checks for
390
# the rest of the inferred objects.
391
ignore-on-opaque-inference=yes
392
393
# List of class names for which member attributes should not be checked (useful
394
# for classes with dynamically set attributes). This supports the use of
395
# qualified names.
396
ignored-classes=optparse.Values,thread._local,_thread._local
397
398
# List of module names for which member attributes should not be checked
399
# (useful for modules/projects where namespaces are manipulated during runtime
400
# and thus existing member attributes cannot be deduced by static analysis. It
401
# supports qualified module names, as well as Unix pattern matching.
402
ignored-modules=
403
404
# Show a hint with possible names when a member name was not found. The aspect
405
# of finding the hint is based on edit distance.
406
missing-member-hint=yes
407
408
# The minimum edit distance a name should have in order to be considered a
409
# similar match for a missing member name.
410
missing-member-hint-distance=1
411
412
# The total number of similar names that should be taken in consideration when
413
# showing a hint for a missing member.
414
missing-member-max-choices=1
415
416
417
[VARIABLES]
418
419
# List of additional names supposed to be defined in builtins. Remember that
420
# you should avoid to define new builtins when possible.
421
additional-builtins=
422
423
# Tells whether unused global variables should be treated as a violation.
424
allow-global-unused-variables=yes
425
426
# List of strings which can identify a callback function by name. A callback
427
# name must start or end with one of those strings.
428
callbacks=cb_,
429
          _cb
430
431
# A regular expression matching the name of dummy variables (i.e. expectedly
432
# not used).
433
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
434
435
# Argument names that match this expression will be ignored. Default to name
436
# with leading underscore
437
ignored-argument-names=_.*|^ignored_|^unused_
438
439
# Tells whether we should check for unused import in __init__ files.
440
init-import=no
441
442
# List of qualified module names which can have objects that can redefine
443
# builtins.
444
redefining-builtins-modules=six.moves,past.builtins,future.builtins
445
446
447
[CLASSES]
448
449
# List of method names used to declare (i.e. assign) instance attributes.
450
defining-attr-methods=__init__,
451
                      __new__,
452
                      setUp
453
454
# List of member names, which should be excluded from the protected access
455
# warning.
456
exclude-protected=_asdict,
457
                  _fields,
458
                  _replace,
459
                  _source,
460
                  _make
461
462
# List of valid names for the first argument in a class method.
463
valid-classmethod-first-arg=cls
464
465
# List of valid names for the first argument in a metaclass class method.
466
valid-metaclass-classmethod-first-arg=mcs
467
468
469
[DESIGN]
470
471
# Maximum number of arguments for function / method
472
max-args=5
473
474
# Maximum number of attributes for a class (see R0902).
475
max-attributes=7
476
477
# Maximum number of boolean expressions in a if statement
478
max-bool-expr=5
479
480
# Maximum number of branch for function / method body
481
max-branches=12
482
483
# Maximum number of locals for function / method body
484
max-locals=15
485
486
# Maximum number of parents for a class (see R0901).
487
max-parents=7
488
489
# Maximum number of public methods for a class (see R0904).
490
max-public-methods=20
491
492
# Maximum number of return / yield for function / method body
493
max-returns=6
494
495
# Maximum number of statements in function / method body
496
max-statements=50
497
498
# Minimum number of public methods for a class (see R0903).
499
min-public-methods=2
500
501
502
[IMPORTS]
503
504
# Allow wildcard imports from modules that define __all__.
505
allow-wildcard-with-all=no
506
507
# Analyse import fallback blocks. This can be used to support both Python 2 and
508
# 3 compatible code, which means that the block might have code that exists
509
# only in one or another interpreter, leading to false positives when analysed.
510
analyse-fallback-blocks=no
511
512
# Deprecated modules which should not be used, separated by a comma
513
deprecated-modules=optparse,tkinter.tix
514
515
# Create a graph of external dependencies in the given file (report RP0402 must
516
# not be disabled)
517
ext-import-graph=
518
519
# Create a graph of every (i.e. internal and external) dependencies in the
520
# given file (report RP0402 must not be disabled)
521
import-graph=
522
523
# Create a graph of internal dependencies in the given file (report RP0402 must
524
# not be disabled)
525
int-import-graph=
526
527
# Force import order to recognize a module as part of the standard
528
# compatibility libraries.
529
known-standard-library=
530
531
# Force import order to recognize a module as part of a third party library.
532
known-third-party=enchant
533
534
535
[EXCEPTIONS]
536
537
# Exceptions that will emit a warning when being caught. Defaults to
538
# "Exception"
539
overgeneral-exceptions=Exception