Skip to content

Instantly share code, notes, and snippets.

@csanquer
Last active October 24, 2016 08:47
Show Gist options
  • Save csanquer/79985ed7c268a8376347d27d5e38b77b to your computer and use it in GitHub Desktop.
Save csanquer/79985ed7c268a8376347d27d5e38b77b to your computer and use it in GitHub Desktop.
Sample editorconfig file
# config for Text Editor and IDE
# http://editorconfig.org/
# This file must be commited at projet's root
root = true
# Common settings for all files
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.{md,markdown}]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2
[Makefile]
indent_style = tab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment