Skip to content

Commit

Permalink
add missing comma-separators in example of eslint-rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
limpid-kzonix committed Dec 31, 2018
1 parent deb1a2a commit f9de5c3
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 f9de5c3

Please sign in to comment.