You can't ignore the specific checks for specific files.
However (and for others looking for a solution) you can exclude individual files or directories via a .codeclimate.yml file. See https://docs.codeclimate.com/docs/excluding-files-and-folders
The drawback is that it means all rules will be excluded.
If you do this, make sure you have good lint rules that do apply to those files and that can help.
Some files such as reducers and other configuration and mapping files aren't appropriate for the linting that you do want for the rest of the code.
e.g.
.codeclimate.yml
## other configuration excluded from example...
exclude_patterns:
- "imageViewer/reducer.js"