.editorconfig 270 B

123456789101112131415
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. [*]
  5. indent_size = 2
  6. indent_style = space
  7. insert_final_newline = true
  8. max_line_length = 80
  9. tab_width = 2
  10. trim_trailing_whitespace = true
  11. [*.{js,ts,coffee}]
  12. quote_type = single