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.
This commit is contained in:
@@ -1,7 +1,4 @@
|
|||||||
engines:
|
engines:
|
||||||
rubocop:
|
|
||||||
enabled: true
|
|
||||||
channel: rubocop-1-56-3
|
|
||||||
duplication:
|
duplication:
|
||||||
enabled: true
|
enabled: true
|
||||||
config:
|
config:
|
||||||
@@ -12,14 +9,8 @@ engines:
|
|||||||
enabled: true
|
enabled: true
|
||||||
bundler-audit:
|
bundler-audit:
|
||||||
enabled: true
|
enabled: true
|
||||||
coffeelint:
|
|
||||||
enabled: true
|
|
||||||
stylelint:
|
|
||||||
enabled: true
|
|
||||||
fixme:
|
fixme:
|
||||||
enabled: true
|
enabled: true
|
||||||
markdownlint:
|
|
||||||
enabled: true
|
|
||||||
ratings:
|
ratings:
|
||||||
paths:
|
paths:
|
||||||
- app/**/*
|
- app/**/*
|
||||||
|
|||||||
Reference in New Issue
Block a user