Skip to content
Snippets Groups Projects
Select Git revision
  • c8c7a016d1eba04d603238c426f76d0d991685b0
  • main default protected
  • dev protected
  • f-yaml-parser-enums
  • f-fix-paths
  • f-fix-validate-to-dict
  • f-labfolder-converter
  • f-state-machine-script
  • f-xlsx-converter-warnings-errors
  • f-rename
  • f-extra-deps
  • f-more-jsonschema-export
  • f-henrik
  • f-fix-89
  • f-trigger-advanced-user-tools
  • f-real-rename-test
  • f-linkahead-rename
  • f-register-integrationtests
  • f-fix-id
  • f-h5-files
  • f-json-schema
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.0
  • v0.10.0-numpy2
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.0
  • v0.4.1
  • v0.4.0
  • v0.3.1
  • v0.3.0
37 results

pylintrc

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pylintrc 795 B
    # -*- 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;