Last active
October 14, 2021 11:19
-
-
Save justerror/610dd9062958a3a9b9cb87f97282c15b to your computer and use it in GitHub Desktop.
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
{ | |
"*.html": "htmlhint --config .htmlhintrc -i index.html", | |
"*.css": [ | |
"stylelint --fix" | |
], | |
"*.scss": [ | |
"stylelint -s=scss --fix" | |
], | |
"*.{js,ts}": "eslint --fix", | |
"*.{js,ts,css,scss,md}": "prettier --write" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment