fix: 补充提交引入设备的样式表

dev-deviceSetting
donghao 2 years ago
parent 8313ec2ae0
commit 04c2e4171b

@ -89,6 +89,8 @@ const progressData = ref([
<style lang="scss" scoped> <style lang="scss" scoped>
@import url("./ServerCard.scss"); @import url("./ServerCard.scss");
/* 测试 */
</style> </style>
<style lang="scss"> <style lang="scss">

@ -1,3 +1,11 @@
/*
* @Author: donghao donghao@supervision.ltd
* @Date: 2024-01-12 14:35:28
* @LastEditors: donghao donghao@supervision.ltd
* @LastEditTime: 2024-01-17 11:42:27
* @FilePath: \General-AI-Platform-Web-Client\stylelint.config.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
module.exports = { module.exports = {
root: true, root: true,
extends: [ extends: [
@ -6,20 +14,6 @@ module.exports = {
"stylelint-config-recess-order" "stylelint-config-recess-order"
], ],
plugins: ["stylelint-order", "stylelint-prettier", "stylelint-scss"], plugins: ["stylelint-order", "stylelint-prettier", "stylelint-scss"],
overrides: [
{
files: ["**/*.(css|html|vue)"],
customSyntax: "postcss-html"
},
{
files: ["*.scss", "**/*.scss"],
customSyntax: "postcss-scss",
extends: [
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue/scss"
]
}
],
rules: { rules: {
"selector-class-pattern": null, "selector-class-pattern": null,
"no-descending-specificity": null, "no-descending-specificity": null,
@ -60,7 +54,12 @@ module.exports = {
ignore: ["after-comment", "first-nested"] ignore: ["after-comment", "first-nested"]
} }
], ],
"unit-no-unknown": [true, { ignoreUnits: ["rpx"] }], "unit-no-unknown": [
true,
{
ignoreUnits: ["rpx"]
}
],
"order/order": [ "order/order": [
[ [
"dollar-variables", "dollar-variables",
@ -77,7 +76,9 @@ module.exports = {
}, },
"rules" "rules"
], ],
{ severity: "warning" } {
severity: "warning"
}
] ]
}, },
ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx"] ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx"]

Loading…
Cancel
Save