.editorconfig 606 B

123456789101112131415161718192021
  1. # Copying and distribution of this file, with or without modification,
  2. # are permitted in any medium without royalty provided this notice is
  3. # preserved. This file is offered as-is, without any warranty.
  4. # Names of contributors must not be used to endorse or promote products
  5. # derived from this file without specific prior written permission.
  6. # EditorConfig
  7. # http://EditorConfig.org
  8. # top-most EditorConfig file
  9. root = true
  10. # LF end-of-line, insert an empty new line and UTF-8
  11. [*]
  12. end_of_line = lf
  13. insert_final_newline = true
  14. charset = utf-8
  15. # Tab indentation
  16. [makefile,Makefile]
  17. indent_style = tab