.editorconfig 439 B

1234567891011121314151617181920212223
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. [*]
  5. # use line feed
  6. end_of_line = lf
  7. # ensure file ends with a newline when saving
  8. insert_final_newline = true
  9. # soft tabs
  10. indent_style = space
  11. # number of columns used for each indentation level
  12. indent_size = 2
  13. # remove any whitespace characters preceding newline characters
  14. trim_trailing_whitespace = true
  15. # character set
  16. charset = utf-8