2015-06-20 05:01:11 +00:00
|
|
|
/*jshint node:true */
|
|
|
|
module.exports = function ( grunt ) {
|
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
2017-04-21 15:59:56 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
2015-06-20 05:01:11 +00:00
|
|
|
|
|
|
|
grunt.initConfig( {
|
|
|
|
banana: {
|
|
|
|
all: 'i18n/'
|
|
|
|
},
|
2017-04-21 15:59:56 +00:00
|
|
|
jshint: {
|
|
|
|
all: [
|
|
|
|
'**/*.js',
|
|
|
|
'!node_modules/**',
|
|
|
|
'!vendor/**'
|
|
|
|
]
|
|
|
|
},
|
2015-06-20 05:01:11 +00:00
|
|
|
jsonlint: {
|
|
|
|
all: [
|
|
|
|
'**/*.json',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2017-04-21 15:59:56 +00:00
|
|
|
grunt.registerTask( 'test', [ 'jsonlint', 'banana', 'jshint' ] );
|
2015-06-20 05:01:11 +00:00
|
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
};
|