From d5a8985c0cdf8329d2e16013f0070bc437190a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Paiva?= Date: Mon, 27 Nov 2017 21:11:57 +0100 Subject: [PATCH] Docs: fix comma JSON error on the first example (#98) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c8f74acb..0cfc44e2 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ $ npm install --save-dev eslint eslint-plugin-node "plugins": ["node"], "extends": ["eslint:recommended", "plugin:node/recommended"], "rules": { - "node/exports-style": ["error", "module.exports"], + "node/exports-style": ["error", "module.exports"] } } ```