1 Star 0 Fork 6

drugdream/archetype-backend-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.stylelintrc.cjs 3.79 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
extends: [
'stylelint-config-standard',
'stylelint-config-html/vue',
'stylelint-config-standard-scss',
'stylelint-config-recommended-vue/scss',
'stylelint-config-standard-vue',
],
plugins: ['stylelint-order'],
rules: {
// 为了让 Stylelint 支持 SCSS 语法中的 mixin、extend、content 语法, 项目使用了tailwind也用了@tailwind所以,这里把tailwind也加进去
'scss/at-rule-no-unknown': [
true,
{ ignoreAtRules: ['mixin', 'extend', 'content', 'include', 'tailwind'] },
],
'scss/dollar-variable-pattern': null,
// 每次缩进为两个空格, stylelint 15已将其废弃
// indentation: 2,
// 这里是允许了空的style标签
'no-empty-source': null,
'scss/at-mixin-pattern': null,
'selector-class-pattern': null,
'custom-property-pattern': null,
// 颜色指定小写(注意和eslint或prettier保持一致), stylelint 15已将其废弃
// 'color-hex-case': 'lower',
// 禁止空块
'block-no-empty': true,
'media-feature-name-no-vendor-prefix': null,
'function-url-quotes': 'never',
// 颜色6位长度
'color-hex-length': 'long',
// 兼容自定义标签名
'selector-type-no-unknown': [
true,
{
ignoreTypes: [],
},
],
// 忽略伪类选择器 ::v-deep
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['v-deep'],
},
],
// 禁止低优先级的选择器出现在高优先级的选择器之后。
'no-descending-specificity': null,
// 不验证@未知的名字,为了兼容scss的函数
'at-rule-no-unknown': null,
// 禁止空注释
'comment-no-empty': true,
// 禁止简写属性的冗余值
'shorthand-property-no-redundant-values': true,
// 禁止值的浏览器引擎前缀
'value-no-vendor-prefix': true,
// property-no-vendor-prefix
'property-no-vendor-prefix': true,
// 禁止小于 1 的小数有一个前导零(注意和eslint或prettier保持一致)
// 'number-leading-zero': 'never',
// 禁止空第一行, stylelint 15已将其废弃
// 'no-empty-first-line': true,
// 属性的排序
'order/properties-order': [
'position',
'top',
'right',
'bottom',
'left',
'z-index',
'display',
'justify-content',
'align-items',
'float',
'clear',
'overflow',
'overflow-x',
'overflow-y',
'margin',
'margin-top',
'margin-right',
'margin-bottom',
'margin-left',
'border',
'border-style',
'border-width',
'border-color',
'border-top',
'border-top-style',
'border-top-width',
'border-top-color',
'border-right',
'border-right-style',
'border-right-width',
'border-right-color',
'border-bottom',
'border-bottom-style',
'border-bottom-width',
'border-bottom-color',
'border-left',
'border-left-style',
'border-left-width',
'border-left-color',
'border-radius',
'padding',
'padding-top',
'padding-right',
'padding-bottom',
'padding-left',
'width',
'min-width',
'max-width',
'height',
'min-height',
'max-height',
'font-size',
'font-family',
'font-weight',
'text-align',
'text-justify',
'text-indent',
'text-overflow',
'text-decoration',
'white-space',
'color',
'background',
'background-position',
'background-repeat',
'background-size',
'background-color',
'background-clip',
'opacity',
'filter',
'list-style',
'outline',
'visibility',
'box-shadow',
'text-shadow',
'resize',
'transition',
],
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/drugdream/archetype-backend-template.git
git@gitee.com:drugdream/archetype-backend-template.git
drugdream
archetype-backend-template
archetype-backend-template
develop

搜索帮助