From f5fd77b8d0bb8a21bd0f63a4e2df57f6e13fc4b2 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 2 Jan 2018 10:53:50 +1100 Subject: [PATCH] general: Add pylintrc. --- .pylintrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 3f6fbe3..b066197 100644 --- a/.pylintrc +++ b/.pylintrc @@ -2,4 +2,9 @@ good-names=i,j,k,n,x,y,fg,bg,r,g,b [MESSAGES CONTROL] -disable=inconsistent-return-statements +# inconsistent-return-statements: +# Disabled as it's a false-positive and a bug in pylint. +# too-many-branches: +# Disabled as it's a non-issue and only occurs in the +# process_args() function. +disable=inconsistent-return-statements,too-many-branches