All git repositories must have an .editorconfig file at the root.
As much as possible, we should use .editorconfig (rather than other configuration files) to specify our preferred coding styles.
The top of the .editorconfig file should look like this:
root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = trueThese settings make good defaults. Extension-specific settings can follow in their own sections.
See .editorconfig for C#.
See .editorconfig for JavaScript/TypeScript.
[*.json]
resharper_comment_typo_highlighting = none
resharper_identifier_typo_highlighting = none
resharper_string_literal_typo_highlighting = noneDon't highlight "typos" (non-English words) in JSON when using ReSharper.