0

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

在此处输入图像描述

但是,其他徽章正在工作,我可以看到问题的数量和覆盖 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/"
4

1 回答 1

0

认为您的 .codeclimate 文件中缺少此内容:

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

您可以在此处了解更多信息:https ://docs.codeclimate.com/v1.0/docs/ratings

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

于 2017-07-18T03:52:33.520 回答