1 Star 0 Fork 0

yuanzx/m82

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.stylelintrc.js 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
yuanzx 提交于 2023-10-03 20:29 . init
module.exports = {
extends: [
'stylelint-config-standard',
'stylelint-config-html',
'stylelint-config-recommended-vue',
'stylelint-config-recommended-less'
],
overrides: [
{
files: ['*.less', '**/*.less'],
customSyntax: 'postcss-less'
}
],
plugins: ['stylelint-order'],
rules: {
'order/order': ['declarations', 'custom-properties', 'dollar-variables', 'rules', 'at-rules'],
'order/properties-order': ['position', 'top', 'right', 'bottom', 'left', 'float'],
'order/properties-alphabetical-order': null,
'media-feature-name-no-vendor-prefix': true,
'selector-no-vendor-prefix': null,
'property-no-vendor-prefix': null,
'rule-empty-line-before': null,
'selector-pseudo-class-no-unknown': null,
'font-family-no-missing-generic-family-keyword': null,
'no-descending-specificity': null,
'declaration-empty-line-before': null,
'at-rule-no-unknown': null,
'property-no-unknown': null,
'declaration-block-single-line-max-declarations': null,
'value-no-vendor-prefix': null,
'no-empty-source': null,
'at-rule-no-vendor-prefix': null,
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['v-deep', 'deep']
}
],
'function-calc-no-unspaced-operator': null,
'selector-class-pattern': null,
'max-nesting-depth': null,
'font-family-name-quotes': null,
'selector-max-compound-selectors': null,
'selector-no-qualifying-type': null,
'selector-max-id': null,
'color-function-notation': null,
'alpha-value-notation': null
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yzxazj/m82.git
git@gitee.com:yzxazj/m82.git
yzxazj
m82
m82
master

搜索帮助