From f9de5c31bba5c3accb0d7bbedd212d145b402cf0 Mon Sep 17 00:00:00 2001 From: Alexander Balyshyn Date: Mon, 31 Dec 2018 20:30:22 +0200 Subject: [PATCH] add missing comma-separators in example of eslint-rules. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7cf52ff..8f4aba8 100644 --- a/README.md +++ b/README.md @@ -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"]] } }