build: Clean up Gruntfile

* Sort jshintrc a-z and section it.

* Remove grunt.js from jshintignore (file no longer exists).

* Simplify jshint config by using globstar. The jshintignore
  file still applies (to skip jquery.uls.data.js).

* Update jshint config to also validate Gruntfile.js

* Update listed dependency on 'grunt' and 'grunt-cli' to the
  versions they currently expand to already. We don't know if
  we're compatible with older versions. '^x.y' means, equal or
  higher (within the same major release). Similar to '~x.y',
  except that tilde tolerates older versions.

* Update grunt-contrib-jshint and grunt-contrib-qunit to their
  latest versions.

* Remove obsolete jshintrc parsing hack, use built-in 'jshintrc'
  option as of v0.8.0.

* Remove unused 'pgk' property in grunt config.

* Remove unused grunt-contrib-jasmine and grunt-contrib-copy
  from devDependencies (unused as of ab9b01444f).
This commit is contained in:
Timo Tijhof
2014-10-09 05:59:32 +02:00
parent e34349cf96
commit 89d64b7e93
4 changed files with 26 additions and 33 deletions

View File

@@ -1,2 +1 @@
grunt.js
src\jquery.uls.data.js
src/jquery.uls.data.js

View File

@@ -1,26 +1,32 @@
{
// Enforcing
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": false,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"onevar": true,
"quotmark": "single",
"regexp": false,
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"onevar": true,
"bitwise": true,
"forin": false,
"regexp": false,
"strict": true,
// Relax
"laxbreak": true,
"smarttabs": true,
"multistr": true,
"smarttabs": true,
// Environment
"browser": true,
"predef": [
"_",
"jQuery",

View File

@@ -1,32 +1,22 @@
/*!
* Grunt file
*
* @package jquery.i18n
*/
'use strict';
/*jshint node:true */
'use strict';
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-qunit' );
grunt.initConfig( {
pkg: grunt.file.readJSON( 'package.json' ),
jshint: {
options: JSON.parse( grunt.file.read( '.jshintrc' )
.replace( /\/\*(?:(?!\*\/)[\s\S])*\*\//g, '' ).replace( /\/\/[^\n\r]*/g, '' ) ),
all: ['src/jquery.uls.core.js',
'src/jquery.uls.lcd.js',
'src/jquery.uls.data.utils.js',
'src/jquery.uls.languagefilter.js',
'src/jquery.uls.regionfilter.js' ]
options: {
jshintrc: true
},
all: ['*.js', 'src/*.js']
},
qunit: {
all: ['test/index.html']
all: 'test/index.html'
}
} );
grunt.registerTask( 'lint', ['jshint'] );
grunt.registerTask( 'unit', ['qunit'] );
grunt.registerTask( 'test', ['lint', 'unit'] );
grunt.registerTask( 'default', ['test'] );
grunt.registerTask( 'lint', 'jshint' );
grunt.registerTask( 'test', ['lint', 'qunit'] );
grunt.registerTask( 'default', 'test' );
};

View File

@@ -25,12 +25,10 @@
"Siebrand Mazeland"
],
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1",
"grunt-contrib-jshint": "~0.5.4",
"grunt-contrib-qunit": "~0.2.1",
"grunt-contrib-jasmine": "~0.4",
"grunt-contrib-copy": ">0.0.0"
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.8.0",
"grunt-contrib-qunit": "^0.5.2"
},
"repository": {
"type": "git",