Skip to content

Instantly share code, notes, and snippets.

@steadystatic
Created January 14, 2016 22:29
Show Gist options
  • Save steadystatic/0414c2dc442e2b7c79c9 to your computer and use it in GitHub Desktop.
Save steadystatic/0414c2dc442e2b7c79c9 to your computer and use it in GitHub Desktop.
Sample EditorConfig File
# No .editorconfig files above the root directory
root = true
[*]
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Use 2 spaces for indentation in HTML, JavaScript, JSP, SCSS, and XML
[*.{html,js,jsp,scss,xml}]
indent_size = 2
# 4 space indentation for Java
[*.java]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
max_line_length = 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment