Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
feat: stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
luangjokaj committed Jan 4, 2021
1 parent 9ad1b47 commit 5f165e7
Show file tree
Hide file tree
Showing 3 changed files with 4,198 additions and 114 deletions.
50 changes: 50 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"rules": {
"block-no-empty": true,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-commands",
"after-comment"
]
}
],
"declaration-colon-space-after": "always",
"indentation": [
"tab",
{
"except": [
"value"
]
}
],
"max-empty-lines": 2,
"rule-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"unit-allowed-list": [
"px",
"em",
"rem",
"vw",
"vh",
"deg",
"ms",
"%",
"s",
"dpi",
"pt",
"fr"
]
}
}
Loading

0 comments on commit 5f165e7

Please sign in to comment.