You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.editorconfig 462B

1234567891011121314151617181920212223242526
  1. # This file is for unifying the coding style for different editors and IDEs
  2. # editorconfig.org
  3. # top-most EditorConfig file
  4. root = true
  5. # every file
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. indent_size = 2
  10. indent_style = space
  11. insert_final_newline = true
  12. trim_trailing_whitespace = true
  13. # 4 space indentation
  14. [*.py]
  15. indent_style = space
  16. indent_size = 4
  17. # Tab indentation (no size specified)
  18. [Makefile]
  19. indent_style = tab
  20. [*.md]
  21. trim_trailing_whitespace = false