forked from epicmaxco/vuestic-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: stylelint support (epicmaxco#666)
* feat: add button, that allows to revert color changes made from ui * feat: added stylelint suport * remove stylelint log * update yarn.lock * add color rules to stylelint config
- Loading branch information
1 parent
32a5897
commit 759dc74
Showing
44 changed files
with
5,870 additions
and
3,164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"extends": ["stylelint-config-standard", "stylelint-config-recommended-scss"], | ||
"rules": { | ||
"no-empty-source": null, | ||
"font-family-no-missing-generic-family-keyword": null, | ||
"block-no-empty": null, | ||
"no-descending-specificity": null, | ||
"color-hex-length": "long", | ||
"color-hex-case": "lower" | ||
} | ||
} |
Oops, something went wrong.