refactor: future proofing the prettier/lint-staged for js/ts filetypes

This commit is contained in:
Nicholas Sylke
2023-08-16 06:27:45 -05:00
committed by Mythie
parent 58d765924f
commit 784188ff51
2 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,3 @@
module.exports = {
"**/*.{ts,tsx,md}": [
"prettier --write"
]
}
'**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}': ['prettier --write'],
};