Last active
November 3, 2016 12:20
-
-
Save johnsardine/bf37af242021d9d9c9354c9f0fe56423 to your computer and use it in GitHub Desktop.
.editorconfig
This file contains hidden or 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
# EditorConfig is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space | |
indent_size = 2 | |
# Set default charset | |
[*.{css,less,js,html,php,py}] | |
charset = utf-8 | |
# JavaScript files | |
[*.{js,json}] | |
indent_style = space | |
# Python | |
[*.py] | |
indent_size = 4 | |
[**/js/vendor/**] | |
indent_style = ignore | |
indent_size = ignore | |
# Minified JavaScript files shouldn't be changed | |
[**.min.js] | |
indent_style = ignore | |
insert_final_newline = ignore | |
# Markdown files | |
[*.md] | |
trim_trailing_whitespace = false |
kepler
commented
Nov 3, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment