build: add grunt-contrib-jshint

See T119973

Change-Id: If6ac925b21703585625bb2556c5712bf6d9e016c
This commit is contained in:
Antoine Musso 2017-04-21 17:59:56 +02:00
parent ee69de00d4
commit c6e0dd166b
2 changed files with 11 additions and 2 deletions

View file

@ -2,10 +2,18 @@
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
var conf = grunt.file.readJSON( 'extension.json' );
grunt.initConfig( {
banana: conf.MessagesDirs,
jshint: {
all: [
'**/*.js',
'!node_modules/**',
'!vendor/**'
]
},
jsonlint: {
all: [
'**/*.json',
@ -14,6 +22,6 @@ module.exports = function ( grunt ) {
}
} );
grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
grunt.registerTask( 'test', [ 'jsonlint', 'banana', 'jshint' ] );
grunt.registerTask( 'default', 'test' );
};

View file

@ -5,8 +5,9 @@
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-banana-checker": "0.4.0",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "1.1.0",
"grunt-jsonlint": "1.0.7"
}
}