Created
March 15, 2021 19:35
-
-
Save curtmerrill/9cad1dc6ba67ea024658c3558eaa5d27 to your computer and use it in GitHub Desktop.
Basic editorconfig settings
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
# editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
# Trailing spaces are meaningful in Markdown | |
[*.md] | |
trim_trailing_whitespace = false | |
# Ignore 3rd party JS files | |
[**/{lib,vendor}/**.js] | |
charset = ignore | |
end_of_line = ignore | |
indent_size = ignore | |
indent_style = ignore | |
trim_trailing_whitespace = ignore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment