Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 894 Bytes

File metadata and controls

37 lines (24 loc) · 894 Bytes

.editorconfig

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 = true

These settings make good defaults. Extension-specific settings can follow in their own sections.

C#

See .editorconfig for C#.

JavaScript/TypeScript

See .editorconfig for JavaScript/TypeScript.

JSON

[*.json]
resharper_comment_typo_highlighting = none
resharper_identifier_typo_highlighting = none
resharper_string_literal_typo_highlighting = none

Don't highlight "typos" (non-English words) in JSON when using ReSharper.