From 1155d190b87f72c9b19b10c101f7828e7b782cf8 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 2 Jan 2018 10:58:24 +1100 Subject: [PATCH] pylint: Fix false positives. --- .pylintrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index b066197..407793d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,5 +1,5 @@ [BASIC] -good-names=i,j,k,n,x,y,fg,bg,r,g,b +good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3 [MESSAGES CONTROL] # inconsistent-return-statements: @@ -8,3 +8,6 @@ good-names=i,j,k,n,x,y,fg,bg,r,g,b # Disabled as it's a non-issue and only occurs in the # process_args() function. disable=inconsistent-return-statements,too-many-branches + +[SIMILARITIES] +ignore-imports=y