加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stylelint.config.js 2.31 KB
一键复制 编辑 原始数据 按行查看 历史
李江辰 提交于 2023-12-17 20:33 . chore: 更新stylelint至最新版ESM
/** @type {import("stylelint").Config} */
export default {
defaultSeverity: 'warning',
extends: [
'stylelint-config-standard',
'stylelint-config-html/vue',
'stylelint-config-recess-order',
],
plugins: ['stylelint-order', 'stylelint-less', 'stylelint-prettier'],
rules: {
// 禁止空代码
'no-empty-source': null,
// 禁止在覆盖高特异性选择器之后出现低特异性选择器
'no-descending-specificity': null,
// 不允许未知单位
'unit-no-unknown': [true, { ignoreUnits: ['rpx'] }],
// 禁止小于 1 的小数有一个前导零
// "number-leading-zero": "never",
'media-query-no-invalid': null,
// 禁止空注释
'comment-no-empty': true,
// 未知的 @ 规则
'at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'plugin',
'apply',
'screen',
'function',
'if',
'each',
'include',
'mixin',
'extend',
'content',
'use',
],
},
],
// 空行规则
'rule-empty-line-before': [
'always',
{
ignore: ['after-comment', 'first-nested'],
},
],
'order/order': [
[
'dollar-variables',
'custom-properties',
'at-rules',
'declarations',
{
type: 'at-rule',
name: 'supports',
},
{
type: 'at-rule',
name: 'media',
},
'rules',
],
{ severity: 'warning' },
],
},
overrides: [
{
files: ['**/*.(css|html|vue)'],
customSyntax: 'postcss-html',
rules: {
// 禁止未知的伪类选择器
'selector-pseudo-class-no-unknown': [
true,
{ ignorePseudoClasses: ['deep', 'global'] },
],
// 禁止未知的伪元素选择器
'selector-pseudo-element-no-unknown': [
true,
{ ignorePseudoElements: ['v-deep', 'v-global', 'v-slotted'] },
],
},
},
{
files: ['*.less', '**/*.less'],
customSyntax: 'postcss-less',
extends: ['stylelint-config-standard-less'],
rules: {
'less/color-no-invalid-hex': true,
'less/no-duplicate-variables': true,
},
},
],
ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts'],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化