Revision e8c1dcbd824e1a9a604922783168927e886e0685 authored by Fernando on 07 February 2021, 10:51:51 UTC, committed by Fernando on 07 February 2021, 10:51:51 UTC
1 parent d7eb3a5
Raw File
.pylintrc
[TYPECHECK]

# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=numpy.*,torch.*

[MESSAGES CONTROL]

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
#enable=

# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable =
    arguments-differ,
    bad-continuation,
    missing-module-docstring,
    missing-function-docstring
back to top