| 12345678910111213141516171819 |
- /* global module */
- 'use strict';
- module.exports = function( grunt ) {
- grunt.config.merge( {
- jshint: {
- files: [ '**/*.js' ],
- options: defaultConfig
- }
- } );
- grunt.loadNpmTasks( 'grunt-contrib-jshint' );
- };
- var defaultConfig = {
- 'globalstrict': true,
- 'validthis': true
- };
|