Skip to content

Commit

Permalink
Merge pull request yeoman#85 from stevemao/jshint
Browse files Browse the repository at this point in the history
Fix mocha jshint option
  • Loading branch information
SBoudrias committed Mar 1, 2015
2 parents 75483b6 + a080de4 commit 965c129
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"immed": true,
"indent": 2,
"latedef": true,
"mocha" : true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"mocha" : true
"strict": true
}
1 change: 1 addition & 0 deletions app/templates/jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"eqeqeq": true,
"immed": true,
"latedef": true,
"mocha" : true,
"newcap": true,
"noarg": true,
"sub": true,
Expand Down
1 change: 0 additions & 1 deletion test/test-creation.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/*global describe, beforeEach, it */
'use strict';
var path = require('path');
var assert = require('yeoman-generator').assert;
Expand Down
1 change: 0 additions & 1 deletion test/test-load.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/*global describe, beforeEach, it */
'use strict';
var assert = require('assert');

Expand Down

0 comments on commit 965c129

Please sign in to comment.