mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
31 lines
653 B
JavaScript
31 lines
653 B
JavaScript
|
/* eslint-env node, es6 */
|
||
|
module.exports = function ( grunt ) {
|
||
|
var conf = grunt.file.readJSON( 'skin.json' );
|
||
|
|
||
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
||
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
||
|
|
||
|
grunt.initConfig( {
|
||
|
eslint: {
|
||
|
options: {
|
||
|
reportUnusedDisableDirectives: true,
|
||
|
extensions: [ '.js', '.json' ],
|
||
|
cache: true
|
||
|
},
|
||
|
all: '.'
|
||
|
},
|
||
|
stylelint: {
|
||
|
all: [
|
||
|
'**/*.{css,less}',
|
||
|
'!node_modules/**',
|
||
|
'!vendor/**'
|
||
|
]
|
||
|
},
|
||
|
banana: conf.MessagesDirs
|
||
|
} );
|
||
|
|
||
|
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'banana' ] );
|
||
|
grunt.registerTask( 'default', 'test' );
|
||
|
};
|