From dcc43d8bc4447f7ff5715cf4c44e0538864571d1 Mon Sep 17 00:00:00 2001 From: Daniela Valero Date: Tue, 18 Jul 2017 14:30:48 +0200 Subject: [PATCH] feat: Require quotes only in property names that require it --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 1e370bf19ee..4c2f4e927bd 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,7 +9,7 @@ module.exports = { }, "parserOptions": { "ecmaVersion": 2017 }, "rules": { - "quote-props": ["error", "consistent-as-needed"], + "quote-props": ["error", "as-needed"], "no-dupe-keys": "error", "quotes": ["error", "double"], "no-undef": "error",