mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateStyles
synced 2024-11-15 03:35:47 +00:00
36 lines
653 B
JavaScript
36 lines
653 B
JavaScript
|
/*jshint node:true */
|
||
|
module.exports = function ( grunt ) {
|
||
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
||
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
||
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||
|
grunt.loadNpmTasks( 'grunt-jscs' );
|
||
|
|
||
|
grunt.initConfig( {
|
||
|
jshint: {
|
||
|
options: {
|
||
|
jshintrc: true
|
||
|
},
|
||
|
all: [
|
||
|
'**/*.js',
|
||
|
'!node_modules/**'
|
||
|
]
|
||
|
},
|
||
|
jscs: {
|
||
|
src: '<%= jshint.all %>'
|
||
|
},
|
||
|
banana: {
|
||
|
all: 'i18n/'
|
||
|
},
|
||
|
jsonlint: {
|
||
|
all: [
|
||
|
'*.json',
|
||
|
'**/*.json',
|
||
|
'!node_modules/**'
|
||
|
]
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
grunt.registerTask( 'test', [ 'jshint', 'jscs', 'jsonlint', 'banana' ] );
|
||
|
grunt.registerTask( 'default', 'test' );
|
||
|
};
|