Skip to content

Commit

Permalink
fix jshint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
selaux committed Mar 9, 2014
1 parent d62fb0e commit d42e2ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Gruntfile.js
Expand Up @@ -9,7 +9,7 @@ module.exports = function (grunt) {
'**/*.js',
'!build/**/*.js',
'!node_modules/**/*.js',
'!frontend/public/**/*.js'
'!frontend/javascripts/**/*.js'
]
},
options: {
Expand All @@ -19,8 +19,7 @@ module.exports = function (grunt) {
frontend: {
files: {
src: [
'frontend/public/**/*.js',
'!frontend/public/javascripts/vendor/**/*.js'
'frontend/javascripts/**/*.js'
]
},
options: {
Expand Down
2 changes: 2 additions & 0 deletions frontend/javascripts/main.js
@@ -1,3 +1,5 @@
/*jshint -W097 */

'use strict';

var io = require('socket.io-client');
Expand Down
2 changes: 1 addition & 1 deletion jshint.client.json
Expand Up @@ -29,6 +29,6 @@
"suiteTeardown": true,
"teardown": true,
"test": true,
"io": true
"require": true
}
}

0 comments on commit d42e2ad

Please sign in to comment.