All Downloads are FREE. Search and download functionalities are using the official Maven repository.

report-resources.chartist.chartist-plugin-tooltip.tasks.jshint.js Maven / Gradle / Ivy

/**
 * jshint
 * ======
 *
 * Make sure code styles are up to par and there are no obvious mistakes.
 *
 * Link: https://github.com/gruntjs/grunt-contrib-jshint
 */

'use strict';

module.exports = function (grunt) {
  return {
    options: {
      jshintrc: '.jshintrc',
      reporter: require('jshint-stylish')
    },
    all: [
      'Gruntfile.js',
      '<%= pkg.config.src %>/{,*/}*.js',
      '<%= pkg.config.site %>/scripts/{,*/}*.js'
    ],
    test: {
      options: {
        jshintrc: '<%= pkg.config.test %>/.jshintrc'
      },
      src: ['<%= pkg.config.test %>/spec/{,*/}*.js']
    }
  };
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy