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.

123456789101112131415161718192021222324252627282930313233343536373839
  1. # EditorConfig is awesome: 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. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [*.py]
  11. indent_size = 4
  12. indent_style = space
  13. [*.{yml,yaml}]
  14. indent_style = space
  15. indent_size = 2
  16. [*.toml]
  17. indent_size = 4
  18. indent_style = space
  19. # Markdown and MDX are whitespace sensitive languages.
  20. # Do not remove trailing spaces.
  21. [*.{md,mdx}]
  22. trim_trailing_whitespace = false
  23. # Matches multiple files with brace expansion notation
  24. # Set default charset
  25. [*.{js,tsx}]
  26. indent_style = space
  27. indent_size = 2
  28. # Matches the exact files package.json
  29. [package.json]
  30. indent_style = space
  31. indent_size = 2