/* 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: { cache: true, fix: grunt.option( 'fix' ) }, all: [ '*.{js,json}', '**/*.{js,json}', '!node_modules/**', '!vendor/**' ] }, banana: conf.MessagesDirs, stylelint: { all: [ '**/*.{css,less}', '!node_modules/**', '!vendor/**' ] } } ); grunt.registerTask( 'test', [ 'eslint', 'banana', 'stylelint' ] ); grunt.registerTask( 'default', [ 'test' ] ); };