# Note:
# This is a minimal subset of the options available for Pylint.
# To generate an exhaustive configuration file based on current settings and defaults, run the following command
# in the project directory:
#
#  pylint --generate-rcfile > ~/.pylintrc

[MASTER]

# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=.git, extension_packaging.py

# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=0

# Set reasonable line length
max-line-length=120

# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes

# Not useful warning
disable=too-few-public-methods,
        duplicate-code
