From 1f2b80fa545d1492e36e7c978782ddbdf6dea22f Mon Sep 17 00:00:00 2001 From: Vansh Chaurasiya Date: Sun, 12 Oct 2025 17:42:03 +0530 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20Add=20new=20prettier=20t?= =?UTF-8?q?ailwind=20plugin=20to=20sort=20tailwindcss?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This plugin will help maintain consistency in the codebase BREAKING CHANGE: 🧨 No ✅ Closes: #900 --- .prettierrc | 3 ++- package.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index ad37b825..d36061e2 100644 --- a/.prettierrc +++ b/.prettierrc @@ -2,5 +2,6 @@ "singleQuote": false, "semi": true, "tabWidth": 2, - "printWidth": 80 + "printWidth": 80, + "plugins": ["prettier-plugin-tailwindcss"] } diff --git a/package.json b/package.json index e8599e94..ca216ec3 100644 --- a/package.json +++ b/package.json @@ -89,6 +89,7 @@ "lint-staged": "^16.2.3", "postcss": "^8.5.3", "prettier": "^3.6.2", + "prettier-plugin-tailwindcss": "^0.6.14", "tailwindcss": "^4.1.4", "typescript": "~5.3" },