Skip to content

Instantly share code, notes, and snippets.

@dennissterzenbach
Created May 16, 2017 17:37
Show Gist options
  • Save dennissterzenbach/fbd1fe7957b86e12cbea427c343d51a0 to your computer and use it in GitHub Desktop.
Save dennissterzenbach/fbd1fe7957b86e12cbea427c343d51a0 to your computer and use it in GitHub Desktop.
# EditorConfig defining and maintaining consistent coding styles between different editors and IDEs
# see http://editorconfig.org for more information
#
root = true
[**]
# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
# remove whitespace at the end of lines
trim_trailing_whitespace = true
# add newline at the end of file
insert_final_newline = true
[*.{js,html,json,css,scss}]
# Whitespace is 4 spaces
indent_style = space
indent_size = 4
# handle these files differently:
[*.md]
trim_trailing_whitespace = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment