aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2018-01-02 10:53:50 +1100
committerDylan Araps <[email protected]>2018-01-02 10:53:50 +1100
commitf5fd77b8d0bb8a21bd0f63a4e2df57f6e13fc4b2 (patch)
treeaa845a02b7c6196fbc72e1c77808a9a83d6319d1
parentwallpaper: Remove duplicate code (diff)
downloadpywal-f5fd77b8d0bb8a21bd0f63a4e2df57f6e13fc4b2.tar.xz
pywal-f5fd77b8d0bb8a21bd0f63a4e2df57f6e13fc4b2.zip
general: Add pylintrc.
-rw-r--r--.pylintrc7
1 files changed, 6 insertions, 1 deletions
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