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 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.4 | |
# Ensure that personal preference presentation settings can be inherited from parent .editorconfig files. | |
root = false | |
[*] | |
indent_style = tab | |
end_of_line = crlf | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
[*.{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