X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=Gruntfile.js;h=e1e5e4ab01721a898d113d37f1b48ceb6272067d;hb=9cbf84879ef058339f3383ca9bca52e85b33bed5;hp=573db69afb15a591d42bff5cd4e354562b8eb3df;hpb=dabf4e9b833fed9942bd5a7c950893a54e43b0a3;p=lhc%2Fweb%2Fwiklou.git diff --git a/Gruntfile.js b/Gruntfile.js index 573db69afb..e1e5e4ab01 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -15,39 +15,20 @@ module.exports = function ( grunt ) { karmaProxy[wgScriptPath] = wgServer + wgScriptPath; grunt.initConfig( { - pkg: grunt.file.readJSON( 'package.json' ), jshint: { options: { jshintrc: true }, - all: [ - '*.js', - '{includes,languages,resources,tests}/**/*.js' - ] + all: '.' }, jscs: { - all: [ - '<%= jshint.all %>', - // Auto-generated file with JSON (double quotes) - '!tests/qunit/data/mediawiki.jqueryMsg.data.js', - // Skip functions are stored as script files but wrapped in a function when - // executed. node-jscs trips on the would-be "Illegal return statement". - '!resources/src/*-skip.js' - - // Exclude all files ignored by jshint - ].concat( grunt.file.read( '.jshintignore' ).split( '\n' ).reduce( function ( patterns, pattern ) { - // Filter out empty lines - if ( pattern.length && pattern[0] !== '#' ) { - patterns.push( '!' + pattern ); - } - return patterns; - }, [] ) ) + all: '.' }, jsonlint: { all: [ '.jscsrc', - '{languages,maintenance,resources}/**/*.json', - 'package.json' + '**/*.json', + '!{docs/js,extensions,node_modules,skins,vendor}/**' ] }, banana: { @@ -57,10 +38,9 @@ module.exports = function ( grunt ) { }, watch: { files: [ - '<%= jscs.all %>', - '<%= jsonlint.all %>', - '.jshintignore', - '.jshintrc' + '.js*', + '**/*', + '!{docs,extensions,node_modules,skins,vendor}/**' ], tasks: 'test' },