.editorconfig 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # https://editorconfig.org/
  2. root = true
  3. [*]
  4. charset = utf-8
  5. end_of_line = lf
  6. indent_size = 4
  7. indent_style = space
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [/docker-compose/nginx/**/*.conf]
  11. indent_size = 2
  12. [/docker-compose/wazuh/**/*.conf]
  13. indent_size = 2
  14. [*.css]
  15. indent_size = 2
  16. [{*.go,go.mod}]
  17. indent_style = tab
  18. indent_size = unset
  19. [*.hcl]
  20. indent_size = unset
  21. [*{.min,.min.*,-min}.js]
  22. charset = unset
  23. indent_size = unset
  24. indent_style = unset
  25. insert_final_newline = unset
  26. max_line_length = off
  27. [*.json]
  28. indent_size = 2
  29. [*.md]
  30. indent_size = unset
  31. trim_trailing_whitespace = false
  32. [*.nix]
  33. indent_size = 2
  34. [*.py]
  35. indent_size = 2
  36. [*.tf]
  37. indent_size = unset
  38. [/packer/**/http/user-data]
  39. indent_size = 2
  40. [{*.{yaml,yml},.yamllint}]
  41. indent_size = 2
  42. [*.xml]
  43. indent_size = 2
  44. [Makefile]
  45. indent_style = tab
  46. indent_size = unset
  47. [Vagrantfile]
  48. indent_size = 2