Skip to content

Latest commit

 

History

History
81 lines (68 loc) · 1.7 KB

File metadata and controls

81 lines (68 loc) · 1.7 KB

Global

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

Identation

The indentation style is using tab soft and the size of the indentation is 2.

<!-- Good -->
<section>
  <h3 class="title"></h3>
  <p class="text"></p>
</section>

<!-- Bad -->
<section>
    <h3 class="title"></h3>
    <p class="text"></p>
</section>
/* Good */
.item {
  background: red;
  color: white;
}

/* Bad */
.item {
    background: red;
    color: white;
}

Example configuration file (.editorconfig):

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

⬆ back to the top