- 配置 ESLint 代码检查规则和忽略文件 - 配置 Prettier 代码格式化规则 - 配置 StyleLint 样式检查规则和忽略文件 - 配置 Husky Git hooks 实现提交前自动检查
18 lines
453 B
Plaintext
18 lines
453 B
Plaintext
{
|
|
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
|
|
"customSyntax": "postcss-less",
|
|
"rules": {
|
|
"selector-class-pattern": null,
|
|
"no-descending-specificity": null,
|
|
"no-duplicate-selectors": null,
|
|
"color-function-notation": null,
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"selector-pseudo-class-no-unknown": [
|
|
true,
|
|
{
|
|
"ignorePseudoClasses": ["global"]
|
|
}
|
|
]
|
|
}
|
|
}
|