mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-25 09:23:08 +01:00
pylint: Fix false positives.
This commit is contained in:
parent
f5fd77b8d0
commit
1155d190b8
@ -1,5 +1,5 @@
|
|||||||
[BASIC]
|
[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]
|
[MESSAGES CONTROL]
|
||||||
# inconsistent-return-statements:
|
# 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
|
# Disabled as it's a non-issue and only occurs in the
|
||||||
# process_args() function.
|
# process_args() function.
|
||||||
disable=inconsistent-return-statements,too-many-branches
|
disable=inconsistent-return-statements,too-many-branches
|
||||||
|
|
||||||
|
[SIMILARITIES]
|
||||||
|
ignore-imports=y
|
||||||
|
Loading…
Reference in New Issue
Block a user