Skip to content

Commit

Permalink
fixed some jshint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mdasberg committed Apr 11, 2014
1 parent 5febb56 commit 7655ca2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
29 changes: 18 additions & 11 deletions .jshintrc
@@ -1,13 +1,20 @@
{ {
"curly": true, "curly": true,
"eqeqeq": true, "eqeqeq": true,
"immed": true, "immed": true,
"latedef": true, "latedef": true,
"newcap": true, "newcap": true,
"noarg": true, "noarg": true,
"sub": true, "sub": true,
"undef": true, "undef": true,
"boss": true, "boss": true,
"eqnull": true, "eqnull": true,
"node": true "node": false,
"globalstrict": true,
"globals": {
"module": false,
"require": false,
"exports": false
}

} }
3 changes: 1 addition & 2 deletions Gruntfile.js
Expand Up @@ -42,8 +42,7 @@ module.exports = function(grunt) {
prefix: 'sources/first', prefix: 'sources/first',
coverageReport: 'results/first/lcov.info', coverageReport: 'results/first/lcov.info',
testReport: 'results/first/junit.xml' testReport: 'results/first/junit.xml'
} },
,
{ {
path: 'sources/second/scripts', path: 'sources/second/scripts',
prefix: 'sources/second', prefix: 'sources/second',
Expand Down

0 comments on commit 7655ca2

Please sign in to comment.