代码拉取完成,页面将自动刷新
同步操作将从 mfish/mfish-nocode-view 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
module.exports = {
root: true,
plugins: ["stylelint-order"],
extends: ["stylelint-config-standard", "stylelint-config-prettier"],
customSyntax: "postcss-html",
rules: {
"function-no-unknown": null,
"selector-class-pattern": null,
"selector-pseudo-class-no-unknown": [
true,
{
ignorePseudoClasses: ["global"]
}
],
//禁止使用未知的伪类选择器
"selector-pseudo-element-no-unknown": [
true,
{
ignorePseudoElements: ["v-deep"]
}
],
//禁止使用未知规则
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"tailwind",
"apply",
"variants",
"responsive",
"screen",
"function",
"if",
"each",
"include",
"mixin"
]
}
],
//禁止空来源
"no-empty-source": null,
"string-quotes": null,
//禁止使用无效的命名网格区域
"named-grid-areas-no-invalid": null,
//要求或不允许使用Unicode字节顺序标记
"unicode-bom": "never",
//禁止较低特异性的选择器在覆盖较高特异性的选择器之后出现
"no-descending-specificity": null,
//禁止在字体系列名称列表中缺少通用系列
"font-family-no-missing-generic-family-keyword": null,
//在声明的冒号后面需要一个空格或禁止空格
"declaration-colon-space-after": "always-single-line",
//在声明的冒号之前需要一个空格或禁止使用空格
"declaration-colon-space-before": "never",
//在声明块内要求或不允许尾随分号
// 'declaration-block-trailing-semicolon': 'always',
//在规则之前要求或禁止使用空行
"rule-empty-line-before": [
"always",
{
ignore: ["after-comment", "first-nested"]
}
],
//禁止使用未知单位
"unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
//样式顺序
"order/order": [
[
"dollar-variables",
"custom-properties",
"at-rules",
"declarations",
{
type: "at-rule",
name: "supports"
},
{
type: "at-rule",
name: "media"
},
"rules"
],
{ severity: "warning" }
]
},
//忽略的文件类型
ignoreFiles: ["**/*.js", "**/*.jsx", "**/*.tsx", "**/*.ts"],
overrides: [
{
files: ["*.vue", "**/*.vue", "*.html", "**/*.html"],
extends: ["stylelint-config-recommended"],
rules: {
"keyframes-name-pattern": null,
"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", "stylelint-config-recommended-vue"]
}
]
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。