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