1 Star 0 Fork 0

宋先生 / clash-nyanpasu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.stylelintrc.js 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
keiko233 提交于 2024-05-07 08:58 . feat(ui): add SidePage component
import PostCssScss from "postcss-scss";
export default {
root: true,
defaultSeverity: "error",
plugins: [
"stylelint-scss",
"stylelint-order",
"stylelint-declaration-block-no-ignored-properties",
],
extends: [
"stylelint-config-standard",
"stylelint-config-html/html", // the shareable html config for Stylelint.
"stylelint-config-recess-order",
// 'stylelint-config-prettier'
],
rules: {
"selector-pseudo-class-no-unknown": [
true,
{ ignorePseudoClasses: ["global"] },
],
"font-family-name-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"max-nesting-depth": [
10,
{
ignore: ["blockless-at-rules", "pseudo-classes"],
},
],
"declaration-block-no-duplicate-properties": true,
"no-duplicate-selectors": true,
"no-descending-specificity": null,
"selector-class-pattern": null,
"value-no-vendor-prefix": [true, { ignoreValues: ["box"] }],
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"tailwind",
"unocss",
"layer",
"apply",
"variants",
"responsive",
"screen",
],
},
],
},
overrides: [
{
files: ["**/*.scss", "*.scss"],
customSyntax: PostCssScss,
rules: {
"at-rule-no-unknown": null,
"import-notation": null,
"scss/at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"tailwind",
"unocss",
"layer",
"apply",
"variants",
"responsive",
"screen",
],
},
],
},
},
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xgsong/clash-nyanpasu.git
git@gitee.com:xgsong/clash-nyanpasu.git
xgsong
clash-nyanpasu
clash-nyanpasu
main

搜索帮助

344bd9b3 5694891 D2dac590 5694891