From fbd2b597163a687c5485186161891ac54bef441a Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Fri, 22 May 2015 09:50:36 -0500 Subject: [PATCH] tools: add objectLiteralShorthandProperties to .eslintrc Required to make linting pass for using object literal shorthand properties. PR-URL: https://github.com/nodejs/io.js/pull/1760 Reviewed-By: Chris Dickinson --- .eslintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc b/.eslintrc index e023327fbb7d00..0c43234c59411e 100644 --- a/.eslintrc +++ b/.eslintrc @@ -9,6 +9,7 @@ ecmaFeatures: binaryLiterals: true generators: true forOf: true + objectLiteralShorthandProperties: true rules: # Possible Errors