Created
November 2, 2020 15:33
-
-
Save gonzalo123/76801fe49d909a92e3b18a0825b5201f to your computer and use it in GitHub Desktop.
my .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
# see http://editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
max_line_length = off | |
[package.json] | |
indent_size = 2 | |
[*.md] | |
trim_trailing_whitespace = false | |
[*.js] | |
indent_size = 2 | |
ij_javascript_use_semicolon_after_statement = false | |
[*.vue] | |
indent_size = 2 | |
ij_javascript_use_semicolon_after_statement = false | |
[*.html] | |
indent_size = 2 | |
[*.xml] | |
indent_size = 2 | |
# https://www.python.org/dev/peps/pep-0008/#code-lay-out | |
[*.py] | |
indent_size = 4 | |
[*.{yaml,yml}] | |
indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment