.editorconfig 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. end_of_line = lf
  10. charset = utf-8
  11. trim_trailing_whitespace = true
  12. insert_final_newline = true
  13. # Standard at: https://github.com/felixge/node-style-guide
  14. [**.js, **.json]
  15. trim_trailing_whitespace = true
  16. indent_style = space
  17. quote_type = single
  18. curly_bracket_next_line = false
  19. spaces_around_operators = true
  20. space_after_control_statements = true
  21. space_after_anonymous_functions = false
  22. spaces_in_brackets = false
  23. # No Standard. Please document a standard if different from .js
  24. [**.yml, **.html, **.css]
  25. trim_trailing_whitespace = true
  26. indent_style = space
  27. # No standard. Please document a standard if different from .js
  28. [**.md]
  29. indent_style = space
  30. trim_trailing_whitespace = false
  31. # Standard at:
  32. [Makefile]
  33. indent_style = space