Created
January 14, 2016 22:29
-
-
Save steadystatic/0414c2dc442e2b7c79c9 to your computer and use it in GitHub Desktop.
Sample EditorConfig File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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