This .editorconfig file should live in the repository and be committed to source control. This file should not contain personal preference settings like `indent_size`, as those should be specified in a parent .editorconfig file outside of the repository.
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
# This file should only include settings that affect the physical contents of the file, not just how it appears in an editor. | |
# Do not include personal preference presentation settings like a tab's `indent_size` in this file; those should be specified | |
# in a parent .editorconfig file outside of the repository. | |
# v1.6 | |
# Ensure that personal preference presentation settings can be inherited from parent .editorconfig files. | |
root = false | |
[*] | |
charset = utf-8 | |
end_of_line = crlf | |
indent_style = tab | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.{tf,md,psd1,pp,yml,yaml}] | |
indent_style = space | |
indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment