1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*jshint node:true */ module.exports = function ( grunt ) { grunt.loadNpmTasks( 'grunt-banana-checker' ); grunt.loadNpmTasks( 'grunt-jsonlint' ); grunt.initConfig( { banana: { all: 'i18n/' }, jsonlint: { all: [ '**/*.json', '!node_modules/**' ] } } ); grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] ); grunt.registerTask( 'default', 'test' ); };