.editorconfig 186 B

123456789101112
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. end_of_line = lf
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. [*.{py,sh,js,vue}]
  9. indent_style = space
  10. indent_size = 4