.editorconfig 270 B

12345678910111213141516
  1. # Configurations to normalize the IDE behavior.
  2. # http://editorconfig.org/
  3. root = true
  4. [*]
  5. indent_style = tab
  6. tab_width = 4
  7. charset = utf-8
  8. end_of_line = lf
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. [package.json]
  12. indent_style = space
  13. tab_width = 2