From e280284aa52de61fd0b0819702152fdaf49fc071 Mon Sep 17 00:00:00 2001 From: Merlin Buczek Date: Fri, 3 May 2019 15:50:17 +0200 Subject: [PATCH] Linter settings --- setup.cfg | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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