एक नए फ़ीचर के लिए conventional commit
डेवलपर्स अपने काम के एक सादे विवरण को body सहित एक साफ़ Conventional Commits संदेश में बदल देते हैं।
इनपुट और आउटपुट का पूर्वावलोकन देखें
इनपुट
- Changes Description
- Added input validation to the user registration form. Now checks email format, password strength (min 8 chars, 1 uppercase, 1 number), and duplicate username. Shows inline error messages under each field.
- Convention
- conventional
- Commit Type
- feat
- Scope
- auth
आउटपुट (अंश)
feat(auth): add registration form input validation Validate email format, enforce password strength (min 8 chars, 1 uppercase, 1 number), and reject duplicate usernames. Display inline error messages beneath each field for clearer user feedback. - Add client-side validators for email, password, and username - Surface field-level error states in the registration form - Prevent submission until all fields pass validation