npm run lint to check for issues in your code.npm run lint-fix to automatically fix common problems.npm run format to style your code automatically.npm run format:all to lint and format your entire codebase in one go.Modify these only if you need custom settings:
eslint.config.mjs: Sets rules for code error checking..prettierignore: Lists files to skip during formatting..prettierrc: Defines formatting styles (e.g., tabs, quotes).package.json (Git Hooks): Sets up auto-formatting when saving changes.