arichr/desuko-discord

View on GitHub
.pylintrc

Summary

Maintainability
Test Coverage
[MAIN]
# Minimum Python version to use for version dependent checks. Will default to
# the version used to run pylint.
py-version=3.8

[REPORTS]

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

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

# Activate the evaluation score.
score=yes

[BASIC]

# Minimum line length for functions/classes that require docstrings, shorter
# ones are exempt.
docstring-min-length=10

[FORMAT]

# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=LF

# Regexp for a line that is allowed to be longer than the limit.
ignore-long-lines=

# Maximum number of characters on a single line.
max-line-length=79