microsoft/healthcare-shared-components

Public

mirrored fromhttps://github.com/microsoft/healthcare-shared-componentsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.editorconfig

56lines · modecode

1# editorconfig.org
2
3# top-most EditorConfig file
4root = true
5
6# Default settings:
7# A newline ending every file
8# Use 4 spaces as indentation
9[*]
10insert_final_newline = true
11indent_style = space
12indent_size = 4
13trim_trailing_whitespace = true
14
15# Generated code
16[*{_AssemblyInfo.cs,.notsupported.cs,.Generated.cs}]
17generated_code = true
18
19# C# files
20[*.cs]
21charset = utf-8
22file_header_template = -------------------------------------------------------------------------------------------------\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n-------------------------------------------------------------------------------------------------
23
24# Xml project files
25[*.{csproj,dcproj}]
26charset = utf-8
27indent_size = 2
28
29# Xml files
30[*.{xml,resx}]
31charset = utf-8
32indent_size = 2
33
34# Xml config files
35[*.{props,targets,config,nuspec}]
36charset = utf-8
37indent_size = 2
38
39# JSON files
40[*.json]
41charset = utf-8
42indent_size = 2
43
44# YAML files
45[*.{yml,yaml}]
46charset = utf-8
47indent_size = 2
48
49# Shell scripts
50[*.sh]
51charset = utf-8
52end_of_line = lf
53
54[*.{cmd,bat}]
55charset = utf-8
56end_of_line = crlf
57