chore: add lint-staged with husky pre-commit hook for automated linting

This commit is contained in:
2026-04-02 12:49:47 -06:00
parent b4a28fb35e
commit 17be2f09dd
4 changed files with 9 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { Configuration } from 'lint-staged'
const config: Configuration = {
'*.{js,jsx,ts,tsx}': 'eslint --fix'
}
export default config