8 Star 0 Fork 0

陈克晗 / wk-crm-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stylelint.config.js 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
ckh324697 提交于 2024-02-03 01:03 . first commit
module.exports = {
plugins: [
'stylelint-order'
],
customSyntax: 'postcss-html',
extends: [
'stylelint-config-recess-order',
'stylelint-config-standard-scss',
'stylelint-config-standard-vue/scss'
],
rules: {
'function-url-quotes': null, // 设置url(路径可不加引号)
'selector-class-pattern': null, // 设置类名选择器不遵循 kebab-case
'no-descending-specificity': null, // 设置允许低优先级的选择器出现在高优先级的选择器之后
'no-empty-source': null, // 允许文件内容为空
'font-family-no-missing-generic-family-keyword': null, // 设置允许定义非"generic-family"风格字体
'color-function-notation': null, // rgba legacy
'alpha-value-notation': null, // 透明度值不限制
'selector-pseudo-class-no-unknown': [ // sass :export 报错
true,
{
'ignorePseudoClasses': [':export']
}
],
'property-no-vendor-prefix': null, // 允许输入 -webkit-
'at-rule-no-vendor-prefix': null, // 允许 @-webkit-keyframes
'block-no-empty': null, // 允许空块
'no-invalid-double-slash-comments': null, // 允许 // 注释
'scss/at-import-partial-extension': null // scss 允许 @import 待 后缀名
}
}
1
https://gitee.com/HanShawn/wk-crm-web.git
git@gitee.com:HanShawn/wk-crm-web.git
HanShawn
wk-crm-web
wk-crm-web
master

搜索帮助