pywal/.pylintrc
2018-01-02 10:58:24 +11:00

14 lines
355 B
INI

[BASIC]
good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3
[MESSAGES CONTROL]
# 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
[SIMILARITIES]
ignore-imports=y