.editorconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. ################################################
  2. # ╔═╗╔╦╗╦╔╦╗╔═╗╦═╗┌─┐┌─┐┌┐┌┌─┐┬┌─┐
  3. # ║╣ ║║║ ║ ║ ║╠╦╝│ │ ││││├┤ ││ ┬
  4. # o╚═╝═╩╝╩ ╩ ╚═╝╩╚═└─┘└─┘┘└┘└ ┴└─┘
  5. #
  6. # > Formatting conventions for your Sails app.
  7. #
  8. # This file (`.editorconfig`) exists to help
  9. # maintain consistent formatting throughout the
  10. # files in your Sails app.
  11. #
  12. # For the sake of convention, the Sails team's
  13. # preferred settings are included here out of the
  14. # box. You can also change this file to fit your
  15. # team's preferences (for example, if all of the
  16. # developers on your team have a strong preference
  17. # for tabs over spaces),
  18. #
  19. # To review what each of these options mean, see:
  20. # http://editorconfig.org/
  21. #
  22. ################################################
  23. root = true
  24. [*]
  25. indent_style = space
  26. indent_size = 2
  27. end_of_line = lf
  28. charset = utf-8
  29. trim_trailing_whitespace = true
  30. insert_final_newline = true