https://github.com/csferrie/python-qinfer
Raw File
Tip revision: 8170c84a0be1723f8c6b09e0d3c7a40a886f1fe3 authored by Ian Hincks on 17 August 2018, 20:03:00 UTC
Merge pull request #134 from ihincks/upgrade-vectorized-risk
Tip revision: 8170c84
.codeclimate.yml
---
engines:
  duplication:
    enabled: true
    config:
      languages:
      - python
  fixme:
    enabled: true
  radon:
    enabled: true
  pep8:
    enabled: true
    checks:
      # We disable E266 (too many leading #s for block comment)
      # as this flags on every use of ## for a section header.
      E266:
        enabled: false
  duplication:
    enabled: true
    config:
      languages:
        - python
ratings:
  paths:
  - "**.py"
exclude_paths:
# There's no point in scanning external libraries for code style,
# as we can't do much with them anyway.
- "src/qinfer/_lib/*"
back to top