Skip to content

Commit

Permalink
Feat: stylelint support (epicmaxco#666)
Browse files Browse the repository at this point in the history
* 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
ssemenkoff authored and asvae committed Oct 29, 2019
1 parent 32a5897 commit 759dc74
Show file tree
Hide file tree
Showing 44 changed files with 5,870 additions and 3,164 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
stylelintOutput.log*
inspect.js

# Editor directories and files
Expand Down
11 changes: 11 additions & 0 deletions .stylelintrc
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"
}
}
Loading

0 comments on commit 759dc74

Please sign in to comment.