diff --git a/README.md b/README.md index 52a0446..e061508 100644 --- a/README.md +++ b/README.md @@ -72,12 +72,12 @@ You can pass in any other options and it passes them straight to JSHint. Look at For example, to load your configuration from your `package.json` exclusively and avoid lookup overhead you can do: ```js - var packageJSON = require('./package'); - var jshintConfig = packageJSON.jshintConfig; +var packageJSON = require('./package'); +var jshintConfig = packageJSON.jshintConfig; - jshintConfig.lookup = false; +jshintConfig.lookup = false; - gulp.src('yo').pipe(jshint(jshintConfig)); +gulp.src('yo').pipe(jshint(jshintConfig)); ``` ## Results