1
0
Fork 0
mirror of https://bitbucket.org/vertlach/iusethis.git synced 2024-06-28 21:05:02 +03:00
mediawiki-iusethis/Gruntfile.js

22 lines
403 B
JavaScript
Raw Normal View History

/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.initConfig( {
banana: {
all: 'i18n/'
},
jsonlint: {
all: [
'**/*.json',
'!node_modules/**',
'!vendor/**'
]
}
} );
grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};