.editorconfig 777 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # @see https://editorconfig.org/
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. indent_size = 4
  9. indent_style = space
  10. insert_final_newline = true
  11. max_line_length = 100
  12. # C-style doc comments
  13. block_comment_start = /*
  14. block_comment = *
  15. block_comment_end = */
  16. [{bw-dev,fr-dev,LICENSE}]
  17. max_line_length = off
  18. [*.{csv,json,html,md,po,py,svg,tsv}]
  19. max_line_length = off
  20. # ` ` at the end of a line is a line-break in markdown
  21. [*.{md,markdown}]
  22. trim_trailing_whitespace = false
  23. [*.{yml,yaml}]
  24. indent_size = 2
  25. max_line_length = off
  26. # Computer generated files
  27. [{icons.css,package.json,*.lock,*.mo}]
  28. indent_size = unset
  29. indent_style = unset
  30. max_line_length = unset
  31. insert_final_newline = unset