pleroma-fe/.stylelintrc.json

22 行
465 B
JSON
Raw 通常表示 履歴

2020-08-05 01:18:13 +09:00
{
"extends": [
"stylelint-rscss/config",
2023-01-10 01:11:37 +09:00
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-html",
"stylelint-config-recommended-vue/scss"
2020-08-05 01:18:13 +09:00
],
"rules": {
"declaration-no-important": true,
"rscss/no-descendant-combinator": false,
"rscss/class-format": [
true,
{
"component": "pascal-case",
"variant": "^-[a-z]\\w+",
"element": "^[a-z]\\w+"
}
]
}
}