codeclimate / codeclimate-eslint

Code Climate Engine for ESLint
MIT License
95 stars 93 forks source link

Add eslint-plugin-ramda to supported plugins #369

Closed Undistraction closed 6 years ago

Undistraction commented 6 years ago

It appears that eslint-plugin-ramda isn't currently supported and reports errors for the rules it provides. Please add it to your whitelist.

Failures

Definition for rule 'ramda/always-simplification' was not found 
Definition for rule 'ramda/compose-simplification' was not found 
etc.

Config:

---
engines:
  duplication:
    enabled: true
    config:
      languages:
      - javascript
  eslint:
    enabled: true
    checks:
          import/extensions:
            enabled: false
  fixme:
    enabled: true
ratings:
  paths:
  - "**.js"
exclude_paths:
- .idea/
- docs/
- dist/
- node_modules/
- lib/
- es/
- test/
- webpack.config.js
- webpack.config-test.web.js
- jsdoc.js
davehenton commented 6 years ago

Hey @Undistraction , we just added support for eslint-plugin-ramda here . Let me know if you run into any issues with that, or if there's anything else we can do for you.

Undistraction commented 6 years ago

Thanks @davehenton.

Unfortunately that still doesn't seem to be working for us.

davehenton commented 6 years ago

Hey @Undistraction -- I should have noted this earlier, but we only added eslint-plugin-ramda to our ESLint-4 channel. To instruct Code Climate to use ESLint-4, you'll need to specifcy that channel in your .codeclimate.yml as directed here. Sorry about the confusion with that. Let me know if this gets you up and running.

Undistraction commented 6 years ago

@davehenton No worries. And thanks.