Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # top-most EditorConfig file
  2. root = true
  3.  
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. charset = utf-8
  10.  
  11. # 4 space indentation
  12. [*.py]
  13. indent_style = space
  14. indent_size = 4
  15.  
  16. # Go
  17. [*.go]
  18. indent_style = tab
  19. indent_size = 4
  20.  
  21. # Tab indentation (no size specified)
  22. [Makefile]
  23. indent_style = tab
  24.  
  25. # Indentation override for all JS under lib directory
  26. [*.{js,hbs,html}]
  27. indent_style = space
  28. indent_size = 2
  29.  
  30. # Matches the exact files either package.json or .travis.yml
  31. [{package.json,.travis.yml}]
  32. indent_style = space
  33. indent_size = 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement