From 2928baa0020315b5d9bce270f4fcca3a9d50abbd Mon Sep 17 00:00:00 2001 From: Felipe Martin Date: Wed, 18 Jan 2017 08:15:04 +0100 Subject: [PATCH] Added pylintrc --- pylintrc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pylintrc diff --git a/pylintrc b/pylintrc new file mode 100644 index 0000000..2156dd9 --- /dev/null +++ b/pylintrc @@ -0,0 +1,22 @@ +[MASTER] +ignore = .git + +[FORMAT] +max-line-length=100 +max-module-lines=2000 + +[DESIGN] +max-attributes=20 +max-locals=30 +max-branches=20 +max-nested-blocks=8 +max-returns=8 +max-args=8 + +[MESSAGES CONTROL] +disable = + locally-disabled, locally-enabled, redefined-outer-name, + invalid-name, protected-access, star-args, fixme, broad-except, + redefined-builtin, missing-docstring, + E1101, W0141, W0110, + R0903