Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created March 29, 2016 12:45
Show Gist options
  • Save tommorris/a64d2a84c7a7265feac0 to your computer and use it in GitHub Desktop.
Save tommorris/a64d2a84c7a7265feac0 to your computer and use it in GitHub Desktop.
My evolving default .editorconfig
# EditorConfig is awesome: http://EditorConfig.org
# My evolving default .editorconfig
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
[*.rb]
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
[*.{py,php}]
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
[*.yml]
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment