Revision b270e6a519e9b8406e48b5821a9dc03e4e20233a authored by veronica-villa on 22 October 2020, 22:33:16 UTC, committed by GitHub on 22 October 2020, 22:33:16 UTC
* Address error when no gating veto argument was given

* Fix error when no gating veto argument is given

* add comment on default empty dict assignment

* shorten too long line

Co-authored-by: Thomas Dent <thomas.dent@usc.es>
1 parent 27c8cd6
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