加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.stylelintrc.cjs 947 Bytes
一键复制 编辑 原始数据 按行查看 历史
小白菜 提交于 2024-01-16 17:58 . feat: 样式格式配置更改
module.exports = {
// 注册 stylelint 的 prettier 插件
plugins: ["stylelint-prettier"],
// 继承一系列规则集合
extends: [
// standard 规则集合
"stylelint-config-standard",
"stylelint-config-recommended-scss",
// 样式属性顺序规则
// "stylelint-config-recess-order",
// 接入 Prettier 规则
"stylelint-config-prettier",
"stylelint-prettier/recommended"
],
// 配置 rules
rules: {
// 开启 Prettier 自动格式化功能
"prettier/prettier": true,
"no-empty-source": null,
"selector-pseudo-class-no-unknown": [
true,
{
ignorePseudoClasses: ["deep"]
}
],
"selector-type-no-unknown": null,
"selector-max-compound-selectors": null,
"selector-no-qualifying-type": null,
"selector-class-pattern": null,
"color-function-notation": null,
"alpha-value-notation": null,
"no-descending-specificity": null
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化