加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stylelint.config.mjs 496 Bytes
一键复制 编辑 原始数据 按行查看 历史
export default {
//继承
extends: [
"stylelint-config-standard-scss",
"stylelint-config-recess-order"
],
rules: {
// 无视优先级顺序(因为有大量嵌套)
'no-descending-specificity': null,
// always(必须加上引号)|never(不能带引号)
'function-url-quotes': 'always',
// 操作符后面允许空行,否则会和prettier产生冲突 https://www.npmjs.com/package/stylelint-config-standard-scss
'scss/operator-no-newline-after': null
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化