diff --git a/README.md b/README.md index dbaabd8..d1b1b26 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ A html driven blog thing that I'm trying to develop. -Doing so in a fashion very much inspired by [the-beth-stack](https://github.com/ethanniser/the-beth-stack). Huge props to [@ethanniser](https://github.com/ethanniser) for the great videos and BETH stack tools; if you ever see this repo; I wanted to learn so I'm redoing much of what your libraries solve so I can understand better how it works, but I'll probably switch to what you provide at some point. Thanks! \ No newline at end of file +Doing so in a fashion very much inspired by [the-beth-stack](https://github.com/ethanniser/the-beth-stack). Huge props to [@ethanniser](https://github.com/ethanniser) for the great videos and BETH stack tools! diff --git a/lint-staged.config.cjs b/lint-staged.config.cjs index 79d381e..bf1dcf7 100644 --- a/lint-staged.config.cjs +++ b/lint-staged.config.cjs @@ -1,6 +1,7 @@ const config = { - "*.ts": "prettier --write --list-different", - "*.tsx": "prettier --write --list-different" + "*.ts,*.js": "prettier --write --list-different", + "*.tsx,*.jsx": "prettier --write --list-different", + "*.md": "prettier --write --list-different" }; module.exports = config;