2022-11-12 17:29:03 +01:00
|
|
|
[MASTER]
|
|
|
|
|
2023-08-25 17:51:08 +02:00
|
|
|
# List of plugins (as comma separated values of python module names) to load,
|
|
|
|
# usually to register additional checkers.
|
|
|
|
load-plugins=pylint_flask
|
2021-06-19 23:21:37 +02:00
|
|
|
|
2021-06-17 00:08:37 +02:00
|
|
|
[TYPECHECK]
|
2023-08-25 17:51:08 +02:00
|
|
|
# List of class names for which member attributes should not be checked (useful
|
|
|
|
# for classes with dynamically set attributes). This supports the use of
|
|
|
|
# qualified names.
|
|
|
|
ignored-classes=Permission,
|
|
|
|
SQLObject,
|
|
|
|
Registrant,
|
|
|
|
scoped_session,
|
|
|
|
func
|
|
|
|
|
|
|
|
# List of module names for which member attributes should not be checked
|
|
|
|
# (useful for modules/projects where namespaces are manipulated during runtime
|
|
|
|
# and thus existing member attributes cannot be deduced by static analysis). It
|
|
|
|
# supports qualified module names, as well as Unix pattern matching.
|
|
|
|
ignored-modules=entreprises
|
|
|
|
|
2023-08-28 12:15:53 +02:00
|
|
|
good-names=d,df,e,f,i,j,k,n,nt,t,u,ue,v,x,y,z,H,F
|
2023-08-25 17:51:08 +02:00
|
|
|
|