mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 11:15:13 +00:00
21 lines
385 B
JavaScript
21 lines
385 B
JavaScript
|
/*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' );
|
||
|
};
|