.editorconfig 235 B

12345678910111213
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. insert_final_newline = true
  5. charset = utf-8
  6. trim_trailing_whitespace = true
  7. indent_style = tab
  8. [*.{md,mdx,yml,yaml,json,toml,htm,html,js,css,svg,sh,bash,fish}]
  9. indent_style = space
  10. indent_size = 2