mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
refactor: 重构用户信息存储和主题管理逻辑 fix: 修正登录类型字段缺失问题 style: 统一页面导航栏样式和布局 docs: 更新README和文档内容 chore: 清理无用代码和资源文件 perf: 优化网络请求和错误处理逻辑 test: 更新API测试用例 build: 更新依赖版本和构建配置 ci: 调整CI/CD脚本配置
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"extends": ["stylelint-config-recommended", "stylelint-config-recommended-scss", "stylelint-config-recommended-vue/scss", "stylelint-config-html/vue", "stylelint-config-recess-order"],
|
|
"plugins": ["stylelint-prettier"],
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.{vue,html}"],
|
|
"customSyntax": "postcss-html"
|
|
},
|
|
{
|
|
"files": ["**/*.{css,scss}"],
|
|
"customSyntax": "postcss-scss"
|
|
}
|
|
],
|
|
|
|
"rules": {
|
|
"import-notation": "string",
|
|
"selector-class-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"keyframes-name-pattern": null,
|
|
"no-descending-specificity": null,
|
|
"no-empty-source": null,
|
|
"declaration-property-value-no-unknown": null,
|
|
"unit-no-unknown": null,
|
|
"selector-type-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreTypes": ["page"]
|
|
}
|
|
],
|
|
"selector-pseudo-class-no-unknown": [
|
|
true,
|
|
{
|
|
"ignorePseudoClasses": ["global", "export", "deep"]
|
|
}
|
|
],
|
|
"property-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreProperties": []
|
|
}
|
|
],
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": ["apply", "use", "forward"]
|
|
}
|
|
]
|
|
}
|
|
}
|