logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

.editorconfig (871B)


  1. # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
  2. # editorconfig.org
  3. root = true
  4. [*]
  5. end_of_line = lf
  6. indent_style = space
  7. indent_size = 4
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. # To match GitHub Actions formatting
  12. [*.{yaml,yml}]
  13. indent_size = 2
  14. [*.md]
  15. trim_trailing_whitespace = false
  16. [{Makefile,*.mk}]
  17. indent_style = tab
  18. # Don't override anything in `lib/`...
  19. [lib/**]
  20. indent_style = unset
  21. indent_size = unset
  22. tab_width = unset
  23. end_of_line = unset
  24. charset = unset
  25. spelling_language = unset
  26. trim_trailing_whitespace = unset
  27. insert_final_newline = unset
  28. # ...except QMK's `lib/python`.
  29. [{*.py,lib/python/**.py}]
  30. end_of_line = lf
  31. indent_style = space
  32. indent_size = 4
  33. charset = utf-8
  34. trim_trailing_whitespace = true
  35. insert_final_newline = true
  36. max_line_length = 200