1 Star 0 Fork 0

引力波/uni-vue3-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.stylelintrc.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
引力波 提交于 2023-11-13 17:30 . first commit
/** @format */
module.exports = {
root: true,
extends: ['stylelint-config-standard-scss'],
plugins: ['stylelint-scss'],
ignoreFiles: ['**/node_modules/**', '**/dist/**', '**/_*.css', '**/iconfont.css'],
customSyntax: 'postcss-html',
rules: {
// 关闭禁止特异性较低的选择器在特异性较高的选择器之后重写
'no-descending-specificity': null,
// 规则前空行
'rule-empty-line-before': null, // 'always'|'never'|'always-multi-line'|'never-multi-line'
// 命名颜色值
'color-named': 'never', // 'always-where-possible'|'never'
// 颜色大小写
'color-hex-case': 'lower', // 'lower'|'upper'
// 样式单双引号关闭 single | double
'string-quotes': ['single'],
// 对未知的伪类报错,忽略 vue 使用的 ::v-deep
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['::v-deep'],
},
],
'unit-no-unknown': [
true,
{
ignoreUnits: ['rpx'],
},
],
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangguixuan/uni-vue3-template.git
git@gitee.com:wangguixuan/uni-vue3-template.git
wangguixuan
uni-vue3-template
uni-vue3-template
master

搜索帮助