2
0

.editorconfig 722 B

1234567891011121314151617181920212223242526
  1. # EditorConfig is awesome: https://EditorConfig.org
  2. #
  3. # EditorConfig helps keep your files clean and uniform by specifying tabs vs
  4. # spaces, file encodings, etc. Download a plugin for your editor:
  5. # https://editorconfig.org/#download
  6. # top-most EditorConfig file
  7. root = true
  8. # Save files in UTF-8, with Unix-style newlines, with a blank line at the end,
  9. # and trim any rogue whitespace (e.g. spaces, tabs at the end of lines.)
  10. [*]
  11. charset = utf-8
  12. end_of_line = lf
  13. insert_final_newline = true
  14. trim_trailing_whitespace = true
  15. # Use 4 spaced for indentation.
  16. [*.{md,py,rst}]
  17. indent_style = space
  18. indent_size = 4
  19. # Use 2 spaces for indentation.
  20. [*.{css,sass,scss,html,js,json,ts,yml}]
  21. indent_style = space
  22. indent_size = 2