Skip to content

Commit

Permalink
[qa] Updated stylelint conf
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Jul 13, 2024
1 parent 25f7903 commit e771a82
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"rules": {
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": ["always", {
"ignore": ["stylelint-commands", "after-comment"]
}],
"declaration-colon-space-after": "always",
"indentation": [2, {
"except": ["value"]
}],
"max-empty-lines": 4,
"rule-empty-line-before": ["never-multi-line", {
"except": ["first-nested"],
"ignore": ["after-comment", "inside-block"]
}],
"unit-allowed-list": ["em", "rem", "%", "s", "px", "vh", "deg"]
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"ignore": ["stylelint-commands", "after-comment"]
}
],
"rule-empty-line-before": [
"never-multi-line",
{
"except": ["first-nested"],
"ignore": ["after-comment", "inside-block"]
}
],
"unit-allowed-list": ["em", "rem", "%", "s", "px", "vh", "deg", "pt"]
}
}
}

0 comments on commit e771a82

Please sign in to comment.