为什么Codeclimate无法显示gpa?

时间:2017-07-18 01:57:34

标签: ruby continuous-integration tdd code-climate

代码气候差距徽章可能会显示为问号/未知的原因是什么?

enter image description here

其他徽章正在运作,但我可以看到一些问题, 和%LoC承保的徽章。

这是我的.codeclimate.yml文件

engines:
  rubocop:
    enabled: true
  eslint:
    enabled: true
  csslint:
    enabled: true
  duplication:
    enabled: true
    config:
      languages:
      - ruby:
      - javascript:
exclude_paths:
- "test/"
- "coverage/"
- "doc/"
- "bin/"

1 个答案:

答案 0 :(得分:0)

认为您在.codeclimate文件中遗漏了这个:

ratings:
  paths:
  - Gemfile.lock
  - "**.css"
  - "**.js"
  - "**.jsx"
  - "**.rb"

您可以在此处详细了解:https://docs.codeclimate.com/v1.0/docs/ratings

您还需要确保您的文件具有UTF-8编码。