From 8fd5aa9f893d7148ee596dbf97637355f48a53a3 Mon Sep 17 00:00:00 2001 From: "Kent C. Dodds" Date: Fri, 24 May 2024 16:15:07 -0600 Subject: [PATCH] fix(prettier): only use spaces for package.json rather than all json --- configs/prettier.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configs/prettier.js b/configs/prettier.js index 192b630..763765f 100644 --- a/configs/prettier.js +++ b/configs/prettier.js @@ -19,8 +19,10 @@ export default { trailingComma: 'all', useTabs: true, overrides: [ + // formatting the package.json with anything other than spaces will cause + // issues when running install... { - files: ['**/*.json'], + files: ['**/package.json'], options: { useTabs: false, },