From 35de8d6c2561b35bb7b22471df6ce986781eec0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bedna=C5=99=C3=ADk?= <jan.bednarik@gmail.com> Date: Thu, 16 Apr 2020 17:43:27 +0200 Subject: [PATCH] Basic pylint config --- .pylintrc | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 00000000..e39dc751 --- /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