From 09d0925459863b339c4dbac17b81d9b10835f8e5 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Wed, 11 Sep 2024 13:22:29 +1200 Subject: [PATCH] Fix prettier config erroring on json --- .prettierrc.json | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.prettierrc.json b/.prettierrc.json index f55bcce..e93a59d 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,11 +1,10 @@ { - "printWidth": 120, - "tabWidth": 2, - "useTabs": false, - "semi": false, - "singleQuote": true, - "trailingComma": "none", - "bracketSpacing": false, - "arrowParens": "avoid", - "parser": "typescript" - } \ No newline at end of file + "printWidth": 120, + "tabWidth": 2, + "useTabs": false, + "semi": false, + "singleQuote": true, + "trailingComma": "none", + "bracketSpacing": false, + "arrowParens": "avoid" +}