pywal/.pylintrc

14 lines
382 B
INI
Raw Normal View History

2017-07-23 03:32:03 +02:00
[BASIC]
good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3,r1,r2,r3,g1,g2,g3,b1,b2,b3
2017-07-23 04:03:23 +02:00
2018-01-02 00:30:46 +01:00
[MESSAGES CONTROL]
2018-01-02 00:53:50 +01:00
# 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
2018-01-02 00:58:24 +01:00
[SIMILARITIES]
ignore-imports=y