mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-11 17:00:10 +00:00
46a3b6d5de
Change-Id: I4db921d6d22f367a4c5647080e791ca5c9e6b3ce
44 lines
894 B
JavaScript
44 lines
894 B
JavaScript
'use strict';
|
||
|
||
module.exports = function ( grunt ) {
|
||
const conf = grunt.file.readJSON( 'extension.json' );
|
||
|
||
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||
grunt.loadNpmTasks( 'grunt-contrib-watch' );
|
||
grunt.loadNpmTasks( 'grunt-eslint' );
|
||
grunt.loadNpmTasks( 'grunt-stylelint' );
|
||
|
||
grunt.initConfig( {
|
||
eslint: {
|
||
options: {
|
||
cache: true,
|
||
fix: grunt.option( 'fix' )
|
||
},
|
||
all: [
|
||
'.'
|
||
]
|
||
},
|
||
// Lint – Styling
|
||
stylelint: {
|
||
all: [
|
||
'modules/**/*.{css,less}'
|
||
]
|
||
},
|
||
banana: Object.assign( {
|
||
options: { requireLowerCase: false }
|
||
}, conf.MessagesDirs ),
|
||
watch: {
|
||
files: [
|
||
'.{stylelintrc,eslintrc}.json',
|
||
'<%= eslint.all %>',
|
||
'<%= stylelint.all %>'
|
||
],
|
||
tasks: 'test'
|
||
}
|
||
} );
|
||
|
||
grunt.registerTask( 'lint', [ 'eslint', 'stylelint', 'banana' ] );
|
||
grunt.registerTask( 'test', 'lint' );
|
||
grunt.registerTask( 'default', [ 'test' ] );
|
||
};
|