Files
nairobi/.codeclimate.yml
Javi Martín 8d4d1b7e4b Don't run linters in Code Climate
We're now running the linters in github actions, and code climate
doesn't use the same versions of the gems or npm packages that we're
using in the application. For example, only a few limited rubocop
versions are available, and sometimes code climate breaks because our
rubocop version isn't compatible with theirs. Now we're also using a
version of stylelint they don't support.

All in all, the linters check in code climate isn't helpful at all
anymmore.
2024-07-04 16:50:51 +02:00

28 lines
362 B
YAML

engines:
duplication:
enabled: true
config:
languages:
ruby:
javascript:
brakeman:
enabled: true
bundler-audit:
enabled: true
fixme:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
exclude_paths:
- app/assets/fonts/
- app/assets/images/
- bin/rails
- bin/rake
- db/
- files/
- public/
- tmp/
- vendor/