.editorconfig 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # Howto with your editor:
  3. # Sublime: https://github.com/sindresorhus/editorconfig-sublime
  4. # top-most EditorConfig file
  5. root = true
  6. # Unix-style newlines with a newline ending every file
  7. [**]
  8. indent_style = space
  9. indent_size = 4
  10. end_of_line = lf
  11. charset = utf-8
  12. trim_trailing_whitespace = true
  13. insert_final_newline = true
  14. # Standard at: https://github.com/felixge/node-style-guide
  15. [**.js, **.json]
  16. trim_trailing_whitespace = true
  17. indent_style = space
  18. quote_type = single
  19. curly_bracket_next_line = false
  20. spaces_around_operators = true
  21. space_after_control_statements = true
  22. space_after_anonymous_functions = false
  23. spaces_in_brackets = false
  24. # No Standard. Please document a standard if different from .js
  25. [**.yml, **.html, **.css]
  26. trim_trailing_whitespace = true
  27. indent_style = space
  28. # No standard. Please document a standard if different from .js
  29. [**.md]
  30. indent_style = space
  31. trim_trailing_whitespace = false
  32. # Standard at:
  33. [Makefile]
  34. indent_style = space