From af263d931b11d7bf974a7ca3a776c8dc099ad5c1 Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Sat, 7 Sep 2024 22:10:40 +0200 Subject: [PATCH] Refactor .prettierrc.json: Update formatting options --- .prettierrc.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .prettierrc.json diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000..8e120193c --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,18 @@ +{ + "bracketSameLine": true, + "endOfLine": "lf", + "trailingComma": "es5", + "singleQuote": true, + "tabWidth": 2, + "useTabs": false, + "jsxSingleQuote": false, + "semi": true, + "printWidth": 128, + "plugins": [ + "prettier-plugin-tailwindcss" + ], + "tailwindConfig": "./tailwind.config.js", + "tailwindFunctions": [ + "tw" + ] +} \ No newline at end of file