.editorconfig 654 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. root = true
  2. [*]
  3. indent_style = space
  4. indent_size = 2
  5. end_of_line = lf
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. max_line_length = 200
  10. [*.{,m}js]
  11. block_comment_start = /*
  12. block_comment = *
  13. block_comment_end = */
  14. [*.yml]
  15. indent_style = space
  16. indent_size = 1
  17. [{package.json,*.mjs}]
  18. indent_style = tab
  19. [lib/core.json]
  20. indent_style = tab
  21. [CHANGELOG.md]
  22. indent_style = space
  23. indent_size = 2
  24. [{*.json,Makefile,CONTRIBUTING.md}]
  25. max_line_length = off
  26. [test/{dotdot,resolver,module_dir,multirepo,node_path,pathfilter,precedence}/**/*]
  27. indent_style = off
  28. indent_size = off
  29. max_line_length = off
  30. insert_final_newline = off