mediawiki-extensions-Replac.../Gruntfile.js
Paladox 826c44afc4 Add npm entry point
Change-Id: If89e3c94c49cc4d0f9ca7fa30cbfed772ba58493
2016-06-02 12:07:58 +00:00

29 lines
526 B
JavaScript

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