mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TitleBlacklist
synced 2024-11-15 02:03:58 +00:00
86f3181a93
Change-Id: Id1d463865e84e52068749b6a66140ed34d96fc3c
29 lines
597 B
JavaScript
29 lines
597 B
JavaScript
/*jshint node:true */
|
|
module.exports = function ( grunt ) {
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
|
|
|
var conf = grunt.file.readJSON( 'extension.json' );
|
|
grunt.initConfig( {
|
|
banana: conf.MessagesDirs,
|
|
jshint: {
|
|
all: [
|
|
'**/*.js',
|
|
'!node_modules/**',
|
|
'!vendor/**'
|
|
]
|
|
},
|
|
jsonlint: {
|
|
all: [
|
|
'**/*.json',
|
|
'!node_modules/**',
|
|
'!vendor/**'
|
|
]
|
|
}
|
|
} );
|
|
|
|
grunt.registerTask( 'test', [ 'jsonlint', 'banana', 'jshint' ] );
|
|
grunt.registerTask( 'default', 'test' );
|
|
};
|