.editorconfig 781 B

123456789101112131415161718192021222324252627282930
  1. # http://editorconfig.org
  2. # A special property that should be specified at the top of the file outside of
  3. # any sections. Set to true to stop .editor config file search on current file
  4. root = true
  5. [*]
  6. # Indentation style
  7. # Possible values - tab, space
  8. indent_style = space
  9. # Indentation size in single-spaced characters
  10. # Possible values - an integer, tab
  11. indent_size = 2
  12. # Line ending file format
  13. # Possible values - lf, crlf, cr
  14. end_of_line = lf
  15. # File character encoding
  16. # Possible values - latin1, utf-8, utf-16be, utf-16le
  17. charset = utf-8
  18. # Denotes whether to trim whitespace at the end of lines
  19. # Possible values - true, false
  20. trim_trailing_whitespace = true
  21. # Denotes whether file should end with a newline
  22. # Possible values - true, false
  23. insert_final_newline = true