Created
March 11, 2021 09:21
-
-
Save vonalbert/39b5d3d3b923c4196e5e61d55c8c26f1 to your computer and use it in GitHub Desktop.
Personal .editorconfig file
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
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true | |
max_line_length = 120 | |
trim_trailing_whitespace = true | |
tab_width = 4 | |
[{*.scss, *.js, *.jsx, *.ts, *.tsx, *.json, *.yaml, *.yml, *.xml, *.xml.dist}] | |
indent_size = 2 | |
tab_width = 2 | |
[*.md] | |
trim_trailing_whitespace = false | |
[Makefile] | |
indent_style = tab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment