fix: lint md files

This commit is contained in:
Cory Dransfeldt 2023-03-27 18:12:49 -07:00
parent 7b21a5b384
commit 55b45b8305
No known key found for this signature in database
7 changed files with 43 additions and 36 deletions

View file

@ -55,15 +55,15 @@
"tailwindcss": "^3.0.18"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [
"**/*.{js,ts,json}": [
"npx prettier --write",
"npx eslint --fix"
],
"**/*.scss": [
"npx prettier --write"
],
"**/*.md": [
"npx markdownlint --fix"
"**/*.{md,markdown}": [
"npx markdownlint --config ./markdownlint.config.json --fix"
]
}
}