podman-compose/.pylintrc

19 lines
1000 B
INI
Raw Permalink Normal View History

2019-03-23 20:42:04 +01:00
[MESSAGES CONTROL]
2022-02-25 23:41:07 +01:00
# C0111 missing-docstring: missing-class-docstring, missing-function-docstring, missing-method-docstring, missing-module-docstrin
2022-03-28 12:54:55 +02:00
# consider-using-with: we need it for color formatter pipe
2022-06-21 20:54:44 +02:00
disable=too-many-lines,too-many-branches,too-many-locals,too-many-statements,too-many-arguments,too-many-instance-attributes,fixme,multiple-statements,missing-docstring,line-too-long,consider-using-f-string,consider-using-with,unnecessary-lambda-assignment
2019-03-23 20:42:04 +01:00
# allow _ for ignored variables
# allow generic names like a,b,c and i,j,k,l,m,n and x,y,z
# allow k,v for key/value
2022-02-25 23:41:07 +01:00
# allow e for exceptions, it for iterator, ix for index
# allow ip for ip address
2019-03-23 20:42:04 +01:00
# allow w,h for width, height
# allow op for operation/operator/opcode
# allow t, t0, t1, t2, and t3 for time
# allow dt for delta time
# allow db for database
# allow ls for list
2022-02-25 23:41:07 +01:00
# allow p for pipe
# allow ex for examples, exists ..etc
good-names=_,a,b,c,dt,db,e,f,fn,fd,i,j,k,v,kv,kw,l,m,n,ls,t,t0,t1,t2,t3,w,h,x,y,z,it,ix,ip,op,p,ex