Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 772 Bytes

RULES_BEFORE_COMMIT.md

File metadata and controls

20 lines (16 loc) · 772 Bytes

Rules to maintain

  1. You must pull before a commit
  2. Must use "feat/fix/extend": "message" format.
  3. Every single function has to maintain Google Doc.
  4. Comment sections must have: definition, action, params, returns.
  5. Please apply appropriate DSA before extension.
  6. Extension rules: Structure -> Scale -> Feature.

Please specify your type of commit message like this:

git commit -m "feat(UI): added button component"

feat: The new feature you are adding to a particular application fix: A bug fix style: Feature and updates related to styling refactor: Refactoring a specific section of the codebase. (Improving a specific function or enhance security) test: Everything related to testing docs: Tasks related to documentation chore: Regular code maintenance