为什么 Codeclimate 无法显示 gpa?

why would Codeclimate be unable to show gpa?

代码气候差距徽章显示为问题的可能原因是什么 mark/unknown?

其他徽章可以使用,但是我可以看到很多问题, 和 % LoC Covered 徽章。

这是我的 .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/"

想想你的 .codeclimate 文件中缺少这个:

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

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

您还需要确保您的文件采用 UTF-8 编码。