23 lines
471 B
JavaScript
23 lines
471 B
JavaScript
|
module.exports = function(grunt) {
|
||
|
'use strict';
|
||
|
|
||
|
var jshintOptions = grunt.file.readJSON('.jshintrc');
|
||
|
jshintOptions.reporter = require('jshint-stylish');
|
||
|
|
||
|
grunt.initConfig({
|
||
|
jshint: {
|
||
|
options: jshintOptions,
|
||
|
target: [
|
||
|
'Gruntfile.js',
|
||
|
'src/*.js',
|
||
|
'test/*.js',
|
||
|
'!src/*.min.js',
|
||
|
'!src/punycode.js'
|
||
|
]
|
||
|
}
|
||
|
});
|
||
|
|
||
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||
|
grunt.registerTask('lint', 'jshint');
|
||
|
};
|