- desktop renderer 接入 @tailwindcss/vite,loading 页面改用 Tailwind 类 - 两个 app 添加 biome.json 继承配置:tailwindDirectives + useSortedClasses
20 lines
336 B
JSON
20 lines
336 B
JSON
{
|
|
"$schema": "../../node_modules/@biomejs/biome/configuration_schema.json",
|
|
"extends": "//",
|
|
"files": {
|
|
"includes": ["**", "!**/routeTree.gen.ts"]
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"tailwindDirectives": true
|
|
}
|
|
},
|
|
"linter": {
|
|
"rules": {
|
|
"nursery": {
|
|
"useSortedClasses": "warn"
|
|
}
|
|
}
|
|
}
|
|
}
|