Code Climate was failing to analyze our repo because their rubocop 1.31 doesn't support rubocop-capybara. Since we're using rubocop 1.56.4 in our code, we're going to use version 1.56.3 for Code Climate which, at the time of writing, is the latest available version in Code Climate.
37 lines
516 B
YAML
37 lines
516 B
YAML
engines:
|
|
rubocop:
|
|
enabled: true
|
|
channel: rubocop-1-56-3
|
|
duplication:
|
|
enabled: true
|
|
config:
|
|
languages:
|
|
ruby:
|
|
javascript:
|
|
brakeman:
|
|
enabled: true
|
|
bundler-audit:
|
|
enabled: true
|
|
coffeelint:
|
|
enabled: true
|
|
scss-lint:
|
|
enabled: true
|
|
fixme:
|
|
enabled: true
|
|
markdownlint:
|
|
enabled: true
|
|
ratings:
|
|
paths:
|
|
- app/**/*
|
|
- lib/**/*
|
|
exclude_paths:
|
|
- app/assets/fonts/
|
|
- app/assets/images/
|
|
- bin/rails
|
|
- bin/rake
|
|
- db/
|
|
- files/
|
|
- public/
|
|
- tmp/
|
|
- vendor/
|