.editorconfig 736 B

1234567891011121314151617181920212223242526272829303132333435
  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. [*.{yml,yaml}]
  18. end_of_line = lf
  19. insert_final_newline = true
  20. trim_trailing_whitespace = true
  21. charset = utf-8
  22. indent_style = space
  23. indent_size = 2
  24. [*.rst]
  25. end_of_line = lf
  26. insert_final_newline = true
  27. trim_trailing_whitespace = true
  28. charset = utf-8
  29. indent_style = space
  30. indent_size = 2