Skip to content

Commit 08ef00d

Browse files
authored
Merge pull request #2 from escendit/1-initial-aspnet-core-builderhosting-extensions
Initial Implementation
2 parents 244e141 + 6c9a413 commit 08ef00d

26 files changed

Lines changed: 1906 additions & 19 deletions

.editorconfig

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
; Common Editor Configuration
2+
; Root EditorConfig
3+
root = true
4+
5+
; General Settings
6+
[*]
7+
charset = utf-8
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
indent_size = 4
11+
indent_style = space
12+
tab_width = 4
13+
14+
space_before_self_closing = true
15+
resharper_space_before_self_closing = true
16+
17+
space_after_last_attribute = false
18+
resharper_space_after_last_attribute = false
19+
20+
attribute_style = first_attribute_on_single_line
21+
attribute_indent = align_by_first_attribute
22+
23+
[*.cs]
24+
charset = utf-8-bom
25+
resharper_check_namespace_highlighting = none
26+
27+
[*.scss]
28+
tab_width = 2
29+
indent_size = 2
30+
ij_sass_indent_size = 2
31+
32+
[Solution.slnx]
33+
tab_width = 2
34+
indent_size = 2
35+
36+
[*.json]
37+
tab_width = 2
38+
indent_size = 2
39+
40+
[*.{yml,yaml}]
41+
tab_width = 2
42+
indent_size = 2
43+
44+
[*.{props,targets,csproj,dcproj}]
45+
tab_width = 2
46+
indent_size = 2
47+
48+
[.editorconfig]
49+
tab_width = 2
50+
indent_size = 2
51+
52+
[nuget.config]
53+
tab_width = 2
54+
indent_size = 2

0 commit comments

Comments
 (0)