Skip to content

Commit f9de5c3

Browse files
add missing comma-separators in example of eslint-rules.
1 parent deb1a2a commit f9de5c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ ESlint Rules for the Standard Linter
2020
```js
2121
{
2222
rules: {
23-
'standard/object-curly-even-spacing': [2, "either"]
23+
'standard/object-curly-even-spacing': [2, "either"],
2424
'standard/array-bracket-even-spacing': [2, "either"],
25-
'standard/computed-property-even-spacing': [2, "even"]
25+
'standard/computed-property-even-spacing': [2, "even"],
2626
'standard/no-callback-literal': [2, ["cb", "callback"]]
2727
}
2828
}

0 commit comments

Comments
 (0)