From 7b686935b8182a802858b09ac56d5ffbeb0a096d Mon Sep 17 00:00:00 2001 From: Matthew Haines-Young Date: Fri, 3 Feb 2023 14:08:07 +0000 Subject: [PATCH] Require double quotes for props in JSX --- packages/eslint-config-humanmade/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/eslint-config-humanmade/index.js b/packages/eslint-config-humanmade/index.js index a2484e56..5741e8ff 100644 --- a/packages/eslint-config-humanmade/index.js +++ b/packages/eslint-config-humanmade/index.js @@ -146,5 +146,6 @@ module.exports = { 'ignoreCase': true, } ], 'jsx-a11y/anchor-is-valid': [ 'error' ], + 'jsx-quotes': [ 'error', 'prefer-double' ], }, };