From ea8b1ac1c8157fb54ab9143b0de848c0752eed71 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 27 Aug 2015 17:53:20 +0300 Subject: Add a pylint.conf (from cliapp) --- pylint.conf | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pylint.conf (limited to 'pylint.conf') diff --git a/pylint.conf b/pylint.conf new file mode 100644 index 00000000..b36b2aad --- /dev/null +++ b/pylint.conf @@ -0,0 +1,28 @@ +[MASTER] +persistent=no + +[MESSAGES CONTROL] +disable= + attribute-defined-outside-init, + bad-builtin, + blacklisted-name, + cyclic-import, + invalid-name, + missing-docstring, + no-self-use, + protected-access, + star-args, + too-few-public-methods, + too-many-arguments, + too-many-branches, + too-many-instance-attributes, + too-many-locals, + too-many-public-methods, + too-many-statements, + unused-argument + +[REPORTS] +reports=no + +[SIMILARITIES] +min-similarity-lines=999 -- cgit v1.2.1