From 38d61392030eeb6aafa3f888e25558153c5b1196 Mon Sep 17 00:00:00 2001 From: Lufty Wiranda Date: Sun, 7 May 2017 05:00:00 +0700 Subject: [PATCH] Fix trailling comma (#3489) Remove extra trailing at the last line of rules * Trailing comma or any other violations is causing .json files stop working --- packages/eslint-plugin-jest/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin-jest/README.md b/packages/eslint-plugin-jest/README.md index 5e094766369b..8785737f0bf7 100644 --- a/packages/eslint-plugin-jest/README.md +++ b/packages/eslint-plugin-jest/README.md @@ -31,7 +31,7 @@ Then configure the rules you want to use under the rules section. "jest/no-disabled-tests": "warn", "jest/no-focused-tests": "error", "jest/no-identical-title": "error", - "jest/valid-expect": "error", + "jest/valid-expect": "error" } } ```