.editorconfig 336 B

123456789101112131415
  1. # This file is for unifying the coding style for different editors and IDEs.
  2. # More information at http://EditorConfig.org
  3. # No .editorconfig files above the root directory
  4. root = true
  5. [*]
  6. indent_style = space
  7. indent_size = 4
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. [package.json]
  12. indent_size = 2