yandere_fe/.stylelintrc.json

22 lines
465 B
JSON
Raw Normal View History

2020-08-04 09:18:13 -07:00
{
"extends": [
"stylelint-rscss/config",
2023-01-09 08:11:37 -08:00
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-html",
"stylelint-config-recommended-vue/scss"
2020-08-04 09:18:13 -07: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+"
}
]
}
}