diff --git a/setup.cfg b/setup.cfg index 1ec89c7..9c47b37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,3 +5,15 @@ exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules [pycodestyle] max-line-length = 120 exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules + +[pylama] +format = pylint +skip = */.tox/*,*/.env/* +linters = pylint,pycodestyle,pyflakes,mccabe +ignore = R0901,C0111 + +[pylama:pycodestyle] +max_line_length = 120 + +[pylama:pylint] +max_line_length = 120 \ No newline at end of file