Revision 88cc27c1255748e39a192b60e50d527fd3479029 authored by Tito Dal Canton on 12 August 2020, 16:13:07 UTC, committed by GitHub on 12 August 2020, 16:13:07 UTC
* Fix exception handling in inference data utils module

* Simplify
1 parent 93fcca8
Raw File
.codeclimate.yml
version: "2"         # required to adjust maintainability checks
checks:
  argument-count:
    config:
      threshold: 30
  complex-logic:
    config:
      threshold: 4
  file-lines:
    config:
      threshold: 1000
  method-complexity:
    config:
      threshold: 1000000
  method-count:
    config:
      threshold: 50
  method-lines:
    config:
      threshold: 100
  nested-control-flow:
    config:
      threshold: 4
  return-statements:
    config:
      threshold: 4
  similar-code:
    config:
      threshold: # language-specific defaults. an override will affect all languages.
  identical-code:
    config:
      threshold: # language-specific defaults. an override will affect all languages.
plugins:
  duplication:
    enabled: true
    config:
      languages:
      - python
  fixme:
    enabled: true
    config:
      strings:
      - FIXME
      - XXX
  pylint:
    enabled: true
    channel: "beta"
    checks:
      import-error:
        enabled: false
  pep8:
    enabled: true

exclude_patterns:
- docs/*
- tools/*
- examples/*
- test/*

back to top