1 Star 0 Fork 0

镜像库/glpi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.stylelintrc.js 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
"extends": "stylelint-config-standard-scss",
"ignoreFiles": [
"**/*.!(scss)",
"css/legacy/**/*",
"css/lib/**/*",
],
"rules": {
"max-line-length": null,
// DISABLED pure naming rules, no functional impact
"scss/at-function-pattern": null, // DISABLE Expected function name to be kebab-case
"scss/dollar-variable-pattern": null, // DISABLE: Expected variable to be kebab-case
"selector-class-pattern": null, // DISABLE: Expected class selector to be kebab-case
"selector-id-pattern": null, // DISABLE: Expected id selector to be kebab-case
// DISABLED pure coding style rules, no functional impact
"color-function-notation": null, // DISABLE: Expected modern color-function notation
"declaration-block-no-redundant-longhand-properties": null, // DISABLE Expected shorthand property "flex-flow"
"media-feature-range-notation": "prefix",
"selector-not-notation": "simple", //DISABLE Expected complex :not() pseudo-class notation
"scss/at-rule-conditional-no-parentheses": null,
"scss/no-global-function-names": null, // scssphp do not support usage of SASS modules
// ALTERED/DISABLED code quality rules, may have a functional impact, override should be removed
"font-family-no-missing-generic-family-keyword": [
true,
{
"ignoreFontFamilies": [
"Font Awesome 6 Free",
"tabler-icons",
],
}
],
"no-descending-specificity": null, // DISABLE: Expected selector ".a" to come before selector ".b .a"
"no-duplicate-selectors": null, // DISABLE: Unexpected duplicate selector ".a", first used at line XXX
// DISABLED code validity rules, override MUST be removed ASAP
"no-invalid-position-at-import-rule": null,
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dlcmirrors/glpi.git
git@gitee.com:dlcmirrors/glpi.git
dlcmirrors
glpi
glpi
10.0/bugfixes

搜索帮助