.editorconfig 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # EditorConfig: https://editorconfig.org/
  2. # top-most EditorConfig file
  3. root = true
  4. # All (Defaults)
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. max_line_length = 80
  11. # Assembly
  12. [*.S]
  13. indent_style = tab
  14. indent_size = 8
  15. # C
  16. [*.{c,h}]
  17. indent_style = tab
  18. indent_size = 8
  19. # Python
  20. [*.py]
  21. indent_style = space
  22. indent_size = 4
  23. # Perl
  24. [*.pl]
  25. indent_style = tab
  26. indent_size = 8
  27. # YAML
  28. [*.{yml,yaml}]
  29. indent_style = space
  30. indent_size = 2
  31. # Shell Script
  32. [*.sh]
  33. indent_style = space
  34. indent_size = 4
  35. # Windows Command Script
  36. [*.cmd]
  37. end_of_line = crlf
  38. indent_style = tab
  39. indent_size = 8
  40. # Valgrind Suppression File
  41. [*.supp]
  42. indent_style = space
  43. indent_size = 3
  44. # CMake
  45. [{CMakeLists.txt,*.cmake}]
  46. indent_style = space
  47. indent_size = 2
  48. # Makefile
  49. [Makefile]
  50. indent_style = tab
  51. # Device tree
  52. [*.{dts,dtsi,overlay}]
  53. indent_style = tab
  54. indent_size = 8
  55. # Git commit messages
  56. [COMMIT_EDITMSG]
  57. max_line_length = 72
  58. # Kconfig
  59. [Kconfig*]
  60. indent_style=tab