# -*- mode:conf; -*-

[FORMAT]
# Good variable names which should always be accepted, separated by a comma
good-names=ii,rt,df

[TYPECHECK]                                                                    
# 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
ignored-modules=etree,h5py,labfolder

[MASTER]
# TODO: The max_inferred size is necessary for https://github.com/PyCQA/pylint/issues/4577,
# otherwise pandas.read_csv's return value would be inferred as TextFileReader.
init-hook=
  import sys; sys.path.extend(["src/caosadvancedtools"]);
  import astroid; astroid.context.InferenceContext.max_inferred = 500;

