Skip to content

Instantly share code, notes, and snippets.

@iagodahlem
Created January 30, 2016 17:51
Show Gist options
  • Save iagodahlem/0625514df27ad7c82ec4 to your computer and use it in GitHub Desktop.
Save iagodahlem/0625514df27ad7c82ec4 to your computer and use it in GitHub Desktop.
My default code Styles in editorconfig.
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# http://editorconfig.org
# top-most EditorConfig file
root = true
# All types
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
# HTML
[*.html]
indent_style = tab
indent_size = 4
# CSS
[*.css]
indent_style = tab
indent_size = 4
# SASS
[*.scss]
indent_style = tab
indent_size = 4
# JS
[*.js]
indent_style = tab
indent_size = 4
# PHP
[*.php]
indent_style = tab
indent_size = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment