代码拉取完成,页面将自动刷新
module.exports = {
extends: [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-html/vue",
"stylelint-config-recommended-vue/scss",
"stylelint-config-recess-order",
"stylelint-config-prettier",
],
overrides: [
{
files: ['**/*.(scss | css | vue | html)'],
customSyntax: 'postcss-scss'
},
{
files: ['**/*.(vue | html)'],
customSyntax: 'postcss-html'
}
],
ignoreFiles: [
'**/*.js',
'**/*.jsx',
'**/*.tsx',
'**/*.ts',
'**/*.json',
'**/*.md',
'**/*.yaml',
],
/**
* null - 关闭该规则
* always - 必须
*/
rules: [
'value-keyboard-case': null, // 在css中使用v-bind,不报错
'no-descending-specificity': null, // 禁止在具有较高优先级的选择器后出现被其覆盖
'function-url-quotes': 'always', // url必须加上引号
'no-empty-source': null, // 关闭禁止空源码
'selector-class-pattern': null, // 关闭强制选择器类名的格式
'property-no-unknown': null, // 禁止未知的属性
'block-opening-brace-space-before': 'always', // 大括号前必须有一个空格或不能
'value-no-vendor-prefix': null, // 关闭 属性值前缀 --webkit-box
'property-no-vendor-prefix': null, // 关闭 属性值前缀 --webkit-mask
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global', 'v-deep', 'deep'],//忽略的伪类
},
], // 不允许未知的选择器
]
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。