mediawiki-extensions-CodeEd.../Gruntfile.js
Umherirrender beb54ff999 Use json extension for .stylelintrc
Bug: T173516
Change-Id: I3216495396d962490b2ef69caa0e5f6263a4922d
2017-08-19 09:40:38 +02:00

47 lines
849 B
JavaScript

/*!
* Grunt file
*
* @package CodeEditor
*/
/* eslint-env node */
module.exports = function ( grunt ) {
var conf = grunt.file.readJSON( 'extension.json' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.loadNpmTasks( 'grunt-stylelint' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.initConfig( {
eslint: {
all: [
'**/*.js',
'!node_modules/**',
'!modules/ace/**',
'!vendor/**'
]
},
stylelint: {
all: [
'**/*.css',
'**/*.less',
'!node_modules/**',
'!modules/ace/**',
'!vendor/**'
]
},
banana: conf.MessagesDirs,
jsonlint: {
all: [
'**/*.json',
'!node_modules/**',
'!vendor/**'
]
}
} );
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'jsonlint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};