Skip to content

Commit

Permalink
Merge pull request #30 from limpid-kzonix/master
Browse files Browse the repository at this point in the history
add missing comma-separators in the example of eslint-rules.
  • Loading branch information
feross committed Aug 5, 2019
2 parents deb1a2a + f9de5c3 commit 900b256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -20,9 +20,9 @@ ESlint Rules for the Standard Linter
```js
{
rules: {
'standard/object-curly-even-spacing': [2, "either"]
'standard/object-curly-even-spacing': [2, "either"],
'standard/array-bracket-even-spacing': [2, "either"],
'standard/computed-property-even-spacing': [2, "even"]
'standard/computed-property-even-spacing': [2, "even"],
'standard/no-callback-literal': [2, ["cb", "callback"]]
}
}
Expand Down

0 comments on commit 900b256

Please sign in to comment.