aboutsummaryrefslogtreecommitdiffstats
path: root/pylama.ini
blob: d8bd4028b730fb46d8acfd1932a0531717c13493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[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