Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #11664 from ficristo/jshint-once
Browse files Browse the repository at this point in the history
Do not run jshint tasks twice
  • Loading branch information
nethip committed Sep 8, 2015
2 parents 0fcedec + 132acf5 commit 81925ce
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,6 @@ module.exports = function (grunt) {
projectRoot: 'src/extensibility/node/spec/'
},
jshint: {
all: [
'<%= meta.grunt %>',
'<%= meta.src %>',
'<%= meta.test %>'
],
grunt: '<%= meta.grunt %>',
src: '<%= meta.src %>',
test: '<%= meta.test %>',
Expand All @@ -325,8 +320,8 @@ module.exports = function (grunt) {
grunt.registerTask('install', ['write-config', 'less']);

// task: test
grunt.registerTask('test', ['jshint:all', 'jasmine']);
// grunt.registerTask('test', ['jshint:all', 'jasmine', 'jasmine_node']);
grunt.registerTask('test', ['jshint', 'jasmine']);
// grunt.registerTask('test', ['jshint', 'jasmine', 'jasmine_node']);

// task: set-release
// Update version number in package.json and rewrite src/config.json
Expand Down

0 comments on commit 81925ce

Please sign in to comment.