[MASTER]

# Use multiple processes to speed up Pylint.
jobs=0

[MESSAGES CONTROL]

disable=
    cell-var-from-loop,
    duplicate-code,
    # Ignoring Import Errors is desired as super-linter
    # does not support installing dependencies as it runs.
    import-error,
    missing-module-docstring,
    missing-class-docstring,
    missing-function-docstring,
    no-name-in-module,
    too-few-public-methods,
    too-many-arguments,
    too-many-locals,
    wrong-import-order,
