pywal/.pylintrc

17 lines
545 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,h,s,v,l
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.
2018-04-01 00:41:01 +02:00
# too-many-statements:
# Disabled as it's a non-issue and only occurs in the
# process_args() function.
2018-10-17 06:20:01 +02:00
disable=inconsistent-return-statements,too-many-branches,too-many-statements,too-many-return-statements
2018-01-02 00:58:24 +01:00
[SIMILARITIES]
ignore-imports=y