mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-26 11:44:28 +08:00
- Added Tailwind CSS support to Prettier configuration with new settings for styles and functions. - Updated package.json to include the prettier-plugin-tailwindcss dependency. - Refactored various store components for improved layout and organization, including adjustments to error handling and component structure. - Enhanced CSS styles for better responsiveness and visual consistency across components.
12 lines
292 B
Plaintext
12 lines
292 B
Plaintext
{
|
|
"singleQuote": true,
|
|
"semi": false,
|
|
"printWidth": 120,
|
|
"trailingComma": "none",
|
|
"endOfLine": "lf",
|
|
"bracketSameLine": true,
|
|
"tailwindStylesheet": "./src/renderer/src/assets/styles/tailwind.css",
|
|
"tailwindFunctions": ["clsx"],
|
|
"plugins": ["prettier-plugin-tailwindcss"],
|
|
}
|