.editorconfig 543 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 = 180
  10. block_comment_start = /*
  11. block_comment = *
  12. block_comment_end = */
  13. [.nycrc]
  14. indent_style = tab
  15. [*.md]
  16. indent_style = space
  17. indent_size = 4
  18. [*.yml]
  19. indent_style = space
  20. indent_size = 2
  21. [readme.markdown]
  22. indent_size = off
  23. max_line_length = off
  24. [*.json]
  25. max_line_length = off
  26. [*.yml]
  27. max_line_length = off
  28. [Makefile]
  29. max_line_length = off
  30. [.travis.yml]
  31. indent_size = 1