forked from domaindrivendev/Swashbuckle.AspNetCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
43 lines (35 loc) · 898 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; EditorConfig to support per-solution formatting.
; Use the EditorConfig VS add-in to make this work.
; http://editorconfig.org/
; This is the default for the codeline.
root = true
[*]
end_of_line = CRLF
insert_final_newline = true
[*.{config,cs,xml}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.{proj,props,sln,targets,yml}]
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
[*.{kproj,csproj,json,ps1,psd1,psm1,resx,rst}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[NuGet.Config]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[*.cs]
dotnet_sort_system_directives_first = true
# Verify settings
[*.{received,verified}.{txt,xml,json}]
charset = "utf-8-bom"
end_of_line = lf
indent_size = unset
indent_style = unset
insert_final_newline = false
tab_width = unset
trim_trailing_whitespace = false