build123d/.pylintrc
2023-02-13 13:29:33 -05:00

11 lines
453 B
INI

[BASIC]
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,x,y,z,ex,Run,_,X,Y,Z,XY,YZ,ZX,XZ,YX,ZY
disable=
unsubscriptable-object, # False positives
use-a-generator, # all([..]) is just fine
protected-access, # _variable to be hiddened from external users
too-many-arguments, # CAD is complex
too-few-public-methods # Objects and Operations will not have methods outside of _init