Last active
July 29, 2021 17:38
-
-
Save justerror/63e2be3e311df43322a772bad2a28c11 to your computer and use it in GitHub Desktop.
Configuration file for EditorConfig
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
# Editor configuration, see https://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.{js,ts}] | |
quote_type = single | |
[*.md] | |
max_line_length = off | |
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