From 1b05d1120b4bdbdae4fef6b1e1b40b222ac5c11c Mon Sep 17 00:00:00 2001 From: aronmal Date: Mon, 29 May 2023 15:52:03 +0200 Subject: [PATCH] Fix prettier-plugin-tailwindcss --- leaky-ships/.prettierrc.json | 8 -------- leaky-ships/prettier.config.js | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 leaky-ships/.prettierrc.json create mode 100644 leaky-ships/prettier.config.js diff --git a/leaky-ships/.prettierrc.json b/leaky-ships/.prettierrc.json deleted file mode 100644 index 1380ed3..0000000 --- a/leaky-ships/.prettierrc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "semi": false, - "plugins": [ - "prettier-plugin-tailwindcss", - "@trivago/prettier-plugin-sort-imports" - ], - "pluginSearchDirs": false -} diff --git a/leaky-ships/prettier.config.js b/leaky-ships/prettier.config.js new file mode 100644 index 0000000..01e3580 --- /dev/null +++ b/leaky-ships/prettier.config.js @@ -0,0 +1,8 @@ +module.exports = { + semi: false, + plugins: [ + "@trivago/prettier-plugin-sort-imports", + "prettier-plugin-tailwindcss", // MUST come last + ], + pluginSearchDirs: false, +}