Hashar has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/349684 )

Change subject: build: add grunt-contrib-jshint
......................................................................

build: add grunt-contrib-jshint

See T119973

Change-Id: Iec8caca9d3577bd33253c79b94606aa1e2d81466
---
M Gruntfile.js
M package.json
2 files changed, 11 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SiteMatrix 
refs/changes/84/349684/1

diff --git a/Gruntfile.js b/Gruntfile.js
index 236650b..26ca0c1 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -2,10 +2,18 @@
 module.exports = function ( grunt ) {
        grunt.loadNpmTasks( 'grunt-banana-checker' );
        grunt.loadNpmTasks( 'grunt-jsonlint' );
+       grunt.loadNpmTasks( 'grunt-contrib-jshint' );
 
        var conf = grunt.file.readJSON( 'extension.json' );
        grunt.initConfig( {
                banana: conf.MessagesDirs,
+               jshint: {
+                       all: [
+                               '**/*.js',
+                               '!node_modules/**',
+                               '!vendor/**'
+                       ]
+               },
                jsonlint: {
                        all: [
                                '**/*.json',
@@ -15,6 +23,6 @@
                }
        } );
 
-       grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
+       grunt.registerTask( 'test', [ 'jsonlint', 'banana', 'jshint' ] );
        grunt.registerTask( 'default', 'test' );
 };
diff --git a/package.json b/package.json
index 72eb4aa..8848a18 100644
--- a/package.json
+++ b/package.json
@@ -5,8 +5,9 @@
   },
   "devDependencies": {
     "grunt": "0.4.5",
-    "grunt-cli": "0.1.13",
     "grunt-banana-checker": "0.4.0",
+    "grunt-cli": "0.1.13",
+    "grunt-contrib-jshint": "1.1.0",
     "grunt-jsonlint": "1.0.7"
   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/349684
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iec8caca9d3577bd33253c79b94606aa1e2d81466
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SiteMatrix
Gerrit-Branch: master
Gerrit-Owner: Hashar <has...@free.fr>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to