Send your coverage to codeclimate.
npm install grunt-codeclimate-reportergrunt-codeclimate-reporter
==========================
> Send your coverage to codeclimate.

Checkout gulp-codeclimate-reporter.
shell
npm install grunt-codeclimate-reporter --save-dev
`Usage
$3
Once the plugin has been installed, it may be enabled inside your Gruntfile.js with this line of JavaScript:`js
grunt.loadNpmTasks('grunt-codeclimate-reporter');
`$3
`js
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// ...
codeclimate: {
main: {
options: {
file: 'path/to/your/lcov.info',
token: 'your_token',
executable: 'path/to/executable' // leave blank to use the default executable
}
}
}
// ...
});
`Note that,
grunt-codeclimate-reporter is registered as a multi task. So it is required to define your sub task e.g. main` (or something else).