diff --git a/gruntfile.js b/gruntfile.js index 1b627ad..13fa88e 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -18,14 +18,17 @@ module.exports = function(grunt) { jshint: { // Don't bother with src/path.js - all: ['gruntfile.js', - 'src/constants.js', - 'src/error.js', - 'src/fs.js', - 'src/shared.js', - 'src/providers/**/*.js', - 'src/adapters/**/*.js' - ] + all: [ + 'gruntfile.js', + 'src/constants.js', + 'src/error.js', + 'src/fs.js', + 'src/index.js', + 'src/shared.js', + 'src/shell.js', + 'src/providers/**/*.js', + 'src/adapters/**/*.js' + ] }, mocha: { diff --git a/src/shell.js b/src/shell.js index 06957ea..c53699a 100644 --- a/src/shell.js +++ b/src/shell.js @@ -1,3 +1,4 @@ +/* jshint evil:true */ define(function(require) { var Path = require('src/path');