[pylama]
linters = pylint,pycodestyle,pyflakes,mccabe

[pylama:pycodestyle]
max_line_length = 100

[pylama:pylint]
known_third_party=onapsdk
disable = 
    fixme,
    logging-fstring-interpolation,
    logging-format-interpolation,
    logging-not-lazy,
    consider-using-f-string,
    unused-argument,
    broad-exception-caught,
    missing-module-docstring,
    too-many-function-args,
    too-many-instance-attributes,
    too-few-public-methods,
    too-many-nested-blocks,
    too-many-return-statements,
    too-many-branches,
    too-many-arguments,
    too-many-locals,
    too-many-statements,
    too-many-boolean-expressions

bad_functions = print
load_plugins = 
    pylint.extensions.bad_builtin