.editorconfig 668 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. [*]
  10. end_of_line = lf
  11. insert_final_newline = true
  12. indent_style = space
  13. indent_size = 4
  14. [*.js]
  15. indent_size = 2
  16. [*.jsx]
  17. indent_size = 2
  18. [*.td]
  19. indent_size = 2
  20. [*.ts]
  21. indent_size = 2
  22. [*.json]
  23. indent_size = 2
  24. [*.yml]
  25. indent_size = 2
  26. [*.html]
  27. indent_size = 2
  28. [Makefile]
  29. indent_style = tab