chore: add eslint fix command

This commit is contained in:
nafees nazik
2023-12-08 21:27:38 +05:30
parent 38e5b1d3ce
commit 7d22957404

View File

@ -1,4 +1,4 @@
module.exports = {
'**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}': ['prettier --write'],
'**/*.yml': ['prettier --write'],
'**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}': ['prettier --write', 'eslint --fix'],
'**/*.{yml,mdx}': ['prettier --write'],
};