Revision 9607f8f7299e22787f3afa979c4bc33aac22248e authored by Thomas Dent on 04 March 2021, 21:54:37 UTC, committed by GitHub on 04 March 2021, 21:54:37 UTC
* fixes to help msgs for injection group

* fix typo

* Fix wrong help message for inj scale factor

* codeclimatecomplaint
1 parent d2a9743
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