Socket
Book a DemoInstallSign in
Socket

grunt-codeclimate-reporter

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-codeclimate-reporter

Send your coverage to codeclimate.

latest
Source
npmnpm
Version
1.2.1
Version published
Weekly downloads
14
-30%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-codeclimate-reporter

Send your coverage to codeclimate.

Build Status

Checkout gulp-codeclimate-reporter.

Install

npm install grunt-codeclimate-reporter --save-dev

Usage

Load task

Once the plugin has been installed, it may be enabled inside your Gruntfile.js with this line of JavaScript:

grunt.loadNpmTasks('grunt-codeclimate-reporter');

Define your target

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).

Keywords

grunt

FAQs

Package last updated on 25 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts