.editorconfig 539 B

1234567891011121314151617181920212223242526272829
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. # Go
  8. # https://golang.org/cmd/gofmt/
  9. [{go.mod,*.go}]
  10. indent_style = tab
  11. # Shell
  12. # https://google.github.io/styleguide/shell.xml#Indentation
  13. [*.{bash,sh,zsh}]
  14. indent_size = 2
  15. indent_style = space
  16. # GNU make
  17. # https://www.gnu.org/software/make/manual/html_node/Recipe-Syntax.html
  18. [Makefile]
  19. indent_style = tab
  20. # YAML
  21. # http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668
  22. [*.{yaml,yml}]
  23. indent_size = 2
  24. indent_style = space