diff --git a/node_sandbox/.prettierrc b/node_sandbox/.prettierrc index a9e6f046..b530c941 100644 --- a/node_sandbox/.prettierrc +++ b/node_sandbox/.prettierrc @@ -1,15 +1,16 @@ { - "plugins": ["@shufo/prettier-plugin-blade"], - "overrides": [ - { - "files": ["*.blade.php"], - "options": { - "extraLiners": "", - "parser": "blade", - "tabWidth": 4, - "sortTailwindcssClasses": true, - "sortHtmlAttributes": "none" - } - } - ] + "plugins": [ + "prettier-plugin-blade", + "prettier-plugin-tailwindcss" + ], + "overrides": [ + { + "files": [ + "*.blade.php" + ], + "options": { + "parser": "blade" + } + } + ] } diff --git a/node_sandbox/package.json b/node_sandbox/package.json index dc82c1b9..dd063139 100644 --- a/node_sandbox/package.json +++ b/node_sandbox/package.json @@ -1,6 +1,7 @@ { "devDependencies": { - "@shufo/prettier-plugin-blade": "^1.14.1", + "prettier-plugin-blade": "^2.1.6", + "prettier-plugin-tailwindcss": "^0.5.12", "prettier": "^3.2.5" } }