build123d/.pylintrc
2023-11-14 19:45:38 -08:00

18 lines
554 B
INI

[MAIN]
extension-pkg-allow-list=OCP
[BASIC]
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,u,v,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
ignore-paths=
./src/build123d/_version.py # Generated