Skip to content

Commit

Permalink
[qa] Added CSS linting to run qa-checks #373
Browse files Browse the repository at this point in the history
Closes #373
  • Loading branch information
totallynotvaishnav authored Feb 26, 2021
1 parent 5f9f5b0 commit a627b61
Show file tree
Hide file tree
Showing 7 changed files with 392 additions and 492 deletions.
28 changes: 28 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"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", "pt"]
}
}
Loading

0 comments on commit a627b61

Please sign in to comment.