aboutsummaryrefslogtreecommitdiff
path: root/.pylintrc
blob: 541dfb19a8d279d6447c0a799c32df943293bbf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
[BASIC]
good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3,r1,r2,r3,g1,g2,g3,b1,b2,b3

[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