.editorconfig 289 B

123456789101112131415
  1. # This file is for unifying the coding style for different editors and IDEs
  2. # editorconfig.org
  3. root = true
  4. [*]
  5. charset = utf-8
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. indent_style = spaces
  9. indent_size = 2
  10. [{Makefile, Makefile.am}]
  11. indent_style = tab
  12. indent_size = 4