4 Star 0 Fork 0

劉興萬/aha-服务外包

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.stylelintrc.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
劉興萬 提交于 2022-07-29 00:22 . feat: 第一次提交
module.exports = {
"extends": [
"stylelint-config-standard", // css 标准规则
"stylelint-config-recess-order", // 排序
],
"plugins": ["stylelint-scss"], // sass配置
"rules": {
"at-rule-no-unknown": null, // 忽略sass @报错问题
"scss/at-rule-no-unknown": true,
"unit-no-unknown": [true, { // 忽略单位rpx
"ignoreUnits": ['rpx']
}],
"selector-type-no-unknown": [true, { // 小程序专属标签
"ignoreTypes": [
"page",
"navigator",
"view",
"text",
"picker",
"/^u-/"
]
}],
"declaration-colon-space-after": "always", // 总有空格
"color-hex-length": "long", // 16进制长度
"string-quotes": "single", // 单引号
"no-descending-specificity": null, // 允许优先级颠倒
"selector-pseudo-element-no-unknown": [ // 未知选择器
true,
{
"ignorePseudoElements": [
"v-deep"
]
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu-xingwan/aha-service-outsourcing.git
git@gitee.com:liu-xingwan/aha-service-outsourcing.git
liu-xingwan
aha-service-outsourcing
aha-服务外包
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385