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