Skip to content

Latest commit

 

History

History
63 lines (48 loc) · 1.72 KB

File metadata and controls

63 lines (48 loc) · 1.72 KB

Commits

Summary

  1. Global
  2. Identation
  3. Commits
  4. English
  5. Task number
  6. Status
  7. Message convention
  8. HTML
  9. Syntax
  10. Comments
  11. Character Encoding
  12. Attribute Order
  13. Performance
  14. Base Code
  15. CSS
  16. Syntax
  17. Comments
  18. Declaration Order
  19. Name
  20. Performance
  21. Media Queries
  22. Javascript
  23. Syntax
  24. Comments
  25. Variables
  26. Performance

English

For the contribution in projects, the message commit, pull request and issue must be written in English.

Task number

Having a issue or a task in Trello, Jira or other task management software for one or more commits, inform the beginning of the same message.

Status

To facilitate, the message should have the following status:

  • add
  • update
  • del
  • fix

The status will be informed in the message brackets. And it could be interpreted as the status of a file or code snippet.

Message convention

Use lowercase letters

// Good
git commit -m "#10 [add] readme with the rules"

// Bad
git commit -m "my first commit"

⬆ back to the top