amis2/.stylelintrc.json
qinhaoyan 40466ac530
fix: 修复css变量文件编译报错问题&chore:新增样式校验 (#5862)
* fix: 修复css变量文件编译报错问题

* chore: 添加样式校验
2022-12-05 20:03:09 +08:00

17 lines
305 B
JSON

{
"rules": {
"color-hex-case": "lower",
"no-extra-semicolons": true,
"declaration-colon-space-after": "always-single-line",
"block-no-empty": true
},
"overrides": [
{
"files": [
"*.scss",
"**/*.scss"
],
"customSyntax": "postcss-scss"
}
]
}