littlelink-server/.stylelintrc

35 lines
708 B
Plaintext
Raw Normal View History

2021-09-11 20:40:43 +02:00
{
"extends": [
"stylelint-config-prettier"
],
"rules": {
"block-no-empty": null,
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-commands",
"after-comment"
]
}
],
"max-empty-lines": 2,
"unit-allowed-list": [
"em",
"rem",
"%",
"s",
"px",
"deg"
],
"indentation": [
2,
{
"except": [
"value"
],
"severity": "error"
}
]
}
}