Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

.editorconfig 468B

123456789101112131415161718192021222324252627282930313233
  1. root = true
  2. [*]
  3. indent_style = space
  4. indent_size = 4
  5. end_of_line = lf
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. max_line_length = 140
  10. block_comment_start = /*
  11. block_comment = *
  12. block_comment_end = */
  13. [*.md]
  14. indent_style = space
  15. indent_size = 4
  16. [readme.markdown]
  17. indent_size = off
  18. max_line_length = off
  19. [*.json]
  20. max_line_length = off
  21. [*.yml]
  22. max_line_length = off
  23. [Makefile]
  24. max_line_length = off
  25. [.travis.yml]
  26. indent_size = 2