Skip to content

Commit

Permalink
Remove extra spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
bronzehedwick committed Aug 21, 2015
1 parent 018702b commit a57a3f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a57a3f2

Please sign in to comment.