Codebase list dnspython / 3229f41a-cf91-4a55-b309-c3b25d512b14/main pylintrc
3229f41a-cf91-4a55-b309-c3b25d512b14/main

Tree @3229f41a-cf91-4a55-b309-c3b25d512b14/main (Download .tar.gz)

pylintrc @3229f41a-cf91-4a55-b309-c3b25d512b14/mainraw · history · blame

[MASTER]
# Pickle collected data for later comparisons.
persistent=no

# Use multiple processes to speed up Pylint, auto-detect number of cores.
jobs=0

[MESSAGES CONTROL]

enable=
    all,
    python3

# It's worth looking at len-as-condition for optimization, but it's disabled
# here as it is not a correctness thing.  Similarly eq-without-hash is
# probably worth improving.

disable=
    R,
    I,
    anomalous-backslash-in-string,
    arguments-differ,
    assigning-non-slot,
    bad-builtin,
    bad-continuation,
    broad-except,
    deprecated-method,
    fixme,
    global-statement,
    invalid-name,
    missing-docstring,
    no-absolute-import,
    no-member,
    protected-access,
    redefined-builtin,
    too-many-lines,
    unused-argument,
    unused-variable,
    wrong-import-order,
    wrong-import-position,
    len-as-condition,
    eq-without-hash,
    next-method-defined,

[REPORTS]

# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
output-format=colorized

# Tells whether to display a full report or only the messages
reports=no

# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details
msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg})'