Assist_Design/.lintstagedrc.json
barsa 3fe74b72dd Enhance pre-commit hook for improved linting and type checking
- Added commands to stage modified tracked files and run lint-staged for auto-fixing issues.
- Included a type check step to ensure code quality before commits.
2025-12-17 14:10:22 +09:00

5 lines
105 B
JSON

{
"*.{ts,tsx,js,jsx}": ["eslint", "prettier -w"],
"*.{json,md,yml,yaml,css,scss}": ["prettier -w"]
}