Last active
November 4, 2022 12:46
-
-
Save peterbartha/16fd6a0bfeeaa1bb6585d9e7604b2c1e to your computer and use it in GitHub Desktop.
My go-to .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
# http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[**.{md,mdx,mkd,markdown}] | |
trim_trailing_whitespace = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment