You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# ESLint
npm run lint # Check for linting errors
npm run lint:fix # Fix auto-fixable errors# Prettier
npm run format # Format all code files
npm run format:check # Check formatting without changing files# Complete workflow
npm run lint:fix && npm run format && npm test
# Before committing
npm run lint:fix # Fix linting issues
npm run format # Format code
npm test# Run tests
git add .
git commit -m "Your commit message"
CI/CD Commands
# In CI pipeline
npm run lint # Check for errors
npm run format:check # Verify formatting
npm test# Run tests