Created
December 8, 2023 10:06
-
-
Save johndodev/7683cf5f38460ed3d5a4dec9c799af37 to your computer and use it in GitHub Desktop.
Exemple de .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
root = true | |
[*] | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
end_of_line = lf | |
charset = utf-8 | |
tab_width = 4 | |
indent_size = 4 | |
indent_style = space | |
[Makefile*] | |
indent_style = tab | |
[*.md] | |
trim_trailing_whitespace = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment