Follow the guidelines below when opening and merging pull requests:
- Subject line must be prefixed with a lowercase type (
fix,feat, ..) followed by a colon and a space. - The type
featmust be used when a commit adds a new feature to the application or library. - The type
fixmust be used when a commit represent a bug fix to your application or library. - Types other than
featandfixmay be used as defined in the Angular convention. - When available, the related Jira ticket must be specified as scope and enclosed in parenthesis, e.g.
fix(APP-1234):. Multiple Jira tickets must be specified as a comma-separated list , e.g.fix(APP-12,APP-34):. - A description must follow the type/scope prefix and describes the code changes.
- The description must be capitalized and use the imperative mood.
feat(APP-12): Add Spanish language support ✅
fix: Allow proxy contracts to be removed in Smart Contract Compose ✅
fix(APP-36,APP-198): Prevent application from crashing when switching network ✅
Add Spanish language support ❌ (type is missing)
feat: add Spanish language support ❌ (description is not capitalized)
feat: Added Spanish language support ❌ (description does not use imperative mood)
fix: Wrong balance on DAO pages ❌ (description does not use imperative mood)