1 Star 1 Fork 0

sunjinpeng/尚硅谷Vue项目实战硅谷甄选,vue3项目+TypeScript前端项目一套通关

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.stylelintrc.cjs 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
sunjinpeng 提交于 2024-03-11 22:09 . 配置stylelint
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'],//忽略的伪类
},
], // 不允许未知的选择器
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sunjinpeng/vue3-admin-template.git
git@gitee.com:sunjinpeng/vue3-admin-template.git
sunjinpeng
vue3-admin-template
尚硅谷Vue项目实战硅谷甄选,vue3项目+TypeScript前端项目一套通关
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385