2021-09-27 12:14:36 +02:00
|
|
|
[MASTER]
|
|
|
|
|
|
|
|
# List of plugins (as comma separated values of python module names) to load,
|
|
|
|
# usually to register additional checkers.
|
|
|
|
load-plugins=pylint_flask_sqlalchemy, pylint_flask
|
2021-09-27 13:43:11 +02:00
|
|
|
|
|
|
|
[TYPECHECK]
|
|
|
|
# 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
|