.editorconfig 315 B

123456789101112131415161718192021
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 4
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. charset = utf-8
  9. end_of_line = lf
  10. max_line_length = 88
  11. [*.{json,yml,yaml,js,jsx,toml}]
  12. indent_size = 2
  13. [LICENSE]
  14. insert_final_newline = false
  15. [Makefile]
  16. indent_style = tab