.editorconfig 830 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # EditorConfig for parabolaiso
  2. # https://editorconfig.org/
  3. #
  4. # SPDX-License-Identifier: GPL-3.0-or-later
  5. # Top-most EditorConfig file
  6. root = true
  7. # Unix-style newlines without trailing whitespaces, but with a newline
  8. # ending every file, utf-8 charset, set indent to spaces with width of four
  9. [*]
  10. end_of_line = lf
  11. insert_final_newline = true
  12. trim_trailing_whitespace = true
  13. charset = utf-8
  14. indent_style = space
  15. indent_size = 4
  16. max_line_length = 120
  17. # for shfmt
  18. switch_case_indent = true
  19. binary_next_line = true
  20. [*.{yml,yaml}]
  21. end_of_line = lf
  22. insert_final_newline = true
  23. trim_trailing_whitespace = true
  24. charset = utf-8
  25. indent_style = space
  26. indent_size = 2
  27. [*.rst]
  28. end_of_line = lf
  29. insert_final_newline = true
  30. trim_trailing_whitespace = true
  31. charset = utf-8
  32. indent_style = space
  33. indent_size = 2
  34. [Makefile]
  35. indent_style = tab