Skip to content

Commit

Permalink
correct the type of globals option in README
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnn committed Jul 4, 2016
1 parent 6059c22 commit 8ddfb84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -87,16 +87,16 @@ Set [configuration](http://eslint.org/docs/user-guide/configuring#configuring-ru

#### options.globals

Type: `Object`
Type: `Array`

Specify [globals](http://eslint.org/docs/user-guide/configuring#specifying-globals).

```javascript
{
"globals":{
"jQuery": false,
"$": true
}
"globals":[
"jQuery",
"$"
]
}
```

Expand Down

0 comments on commit 8ddfb84

Please sign in to comment.