From fa2e4643fe3803ca3e82abd3b49ec5cf69bbc39d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bedna=C5=99=C3=ADk?= <jan.bednarik@gmail.com> Date: Fri, 24 Apr 2020 14:28:40 +0200 Subject: [PATCH] Add pylint config --- .pylintrc | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..e39dc75 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,36 @@ +[MASTER] +# jobs=0 means 'use all CPUs' +jobs=0 + +[MESSAGES CONTROL] +disable = + missing-docstring, + line-too-long, + invalid-name, + no-value-for-parameter, + no-member, + unused-argument, + broad-except, + relative-import, + wrong-import-position, + bare-except, + locally-disabled, + protected-access, + abstract-method, + no-self-use, + fixme, + too-few-public-methods, + ungrouped-imports, + bad-continuation, + redefined-outer-name, + too-many-ancestors, + attribute-defined-outside-init, + too-many-arguments, + +[REPORTS] +output-format=colorized + +[FORMAT] +logging-modules= + logging, + structlog, -- GitLab