Closed olleolleolle closed 4 years ago
We are using latest version of RuboCop. We have specific plugins in play. CodeClimate can not import those.
Problem: Every time CodeClimate sees a new commit in the repo, it fails to make a report. And it shows a gray errored badge.
.codeclimate.yml
We need 0-81: the latest available "channel" for RuboCop at CodeClimate.
Perhaps we also need a .rubocop_codeclimate.yml which inherits from .rubocop.yml, where we set the require: key to [], so as to clear it.
.rubocop_codeclimate.yml
.rubocop.yml
require:
[]
plugins: rubocop: enabled: true config: file: .rubocop_codeclimate.yml channel: rubocop-0-81
We are using latest version of RuboCop. We have specific plugins in play. CodeClimate can not import those.
Problem: Every time CodeClimate sees a new commit in the repo, it fails to make a report. And it shows a gray errored badge.
Background
.codeclimate.yml
Example
.codeclimate.yml
fileWe need 0-81: the latest available "channel" for RuboCop at CodeClimate.
Perhaps we also need a
.rubocop_codeclimate.yml
which inherits from.rubocop.yml
, where we set therequire:
key to[]
, so as to clear it.