From 2504e0f85ca1ea2ec1c7489a29a49a1e4fbab7a6 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Thu, 14 Jul 2016 21:40:05 -0700 Subject: [PATCH] [eslint config] [base] Fleshing out defaults. --- packages/eslint-config-airbnb-base/rules/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-airbnb-base/rules/style.js b/packages/eslint-config-airbnb-base/rules/style.js index 8edf7ed2..6afbc530 100644 --- a/packages/eslint-config-airbnb-base/rules/style.js +++ b/packages/eslint-config-airbnb-base/rules/style.js @@ -51,7 +51,7 @@ module.exports = { // specify whether double or single quotes should be used in JSX attributes // http://eslint.org/docs/rules/jsx-quotes - 'jsx-quotes': 0, + 'jsx-quotes': [0, 'prefer-double'], // enforces spacing between keys and values in object literal properties 'key-spacing': [2, { beforeColon: false, afterColon: true }],