.editorconfig 214 B

1234567891011121314
  1. # @see http://editorconfig.org/
  2. # the buck stops here
  3. root = true
  4. # all files
  5. [*]
  6. end_of_line = LF
  7. indent_style = space
  8. indent_size = 4
  9. charset = utf-8
  10. trim_trailing_whitespace = true
  11. insert_final_newline = true