1 Star 0 Fork 175

花裤熊二 / unibest

forked from 菲鸽 / unibest 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.stylelintrc.cjs 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
菲鸽 提交于 2024-01-23 10:49 . feat: 优化v3代码块
// .stylelintrc.cjs
module.exports = {
root: true,
extends: [
'stylelint-config-standard',
'stylelint-config-standard-scss', // tips: 本插件也可以替换成 stylelint-config-recommended-scss
'stylelint-config-recommended-vue/scss',
'stylelint-config-html/vue',
'stylelint-config-recess-order',
],
overrides: [
// 扫描 .vue/html 文件中的<style>标签内的样式
{
files: ['**/*.{vue,html}'],
customSyntax: 'postcss-html',
},
{
files: ['**/*.{css,scss}'],
customSyntax: 'postcss-scss',
},
],
// 自定义规则
rules: {
// 允许 global 、export 、v-deep等伪类
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global', 'export', 'v-deep', 'deep'],
},
],
'unit-no-unknown': [
true,
{
ignoreUnits: ['rpx'],
},
],
// 处理小程序page标签不认识的问题
'selector-type-no-unknown': [
true,
{
ignoreTypes: ['page'],
},
],
'comment-empty-line-before': 'never',
'custom-property-empty-line-before': 'never',
'no-empty-source': null,
'scss/comment-no-empty': null,
},
}
1
https://gitee.com/xiehai001/unibest.git
git@gitee.com:xiehai001/unibest.git
xiehai001
unibest
unibest
main

搜索帮助