.editorconfig 421 B

1234567891011121314151617
  1. # This file is for unifying the coding style for various code editors and IDEs.
  2. # Make sure to have an editorconfig plug-in installed in your editor to have
  3. # the editor use this file.
  4. # Sets this config file to be the top-most one.
  5. root = true
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. indent_style = space
  10. indent_size = 2
  11. insert_final_newline = true
  12. trim_trailing_whitespace = true
  13. [*.md]
  14. trim_trailing_whitespace = false