-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
65 lines (45 loc) · 1.52 KB
/
Copy path.editorconfig
File metadata and controls
65 lines (45 loc) · 1.52 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# EditorConfig is awesome: http://EditorConfig.org
# Top-most EditorConfig file
root = true
[*]
# Windows-style newlines
end_of_line = crlf
# 4-column space indentation
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
max_line_length = 160
insert_final_newline = true
[*.{csproj,vbproj}]
insert_final_newline = false
charset = utf-8-bom
[project.json]
insert_final_newline = false
charset = utf-8-bom
[*.nuget.targets]
insert_final_newline = false
charset = utf-8-bom
[*.json]
# 2-column space indentation
indent_size = 2
# C# code analysis rules
[*.cs]
# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = none
# StyleCop Analyzers
# SA1124: Do not use regions
dotnet_diagnostic.SA1124.severity = warning
# SA1135: Using directive for namespace should be qualified
dotnet_diagnostic.SA1135.severity = none
# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = none
# SA1628: Documentation text should begin with a capital letter
dotnet_diagnostic.SA1628.severity = warning
# SA1629: Documentation text should end with a period
dotnet_diagnostic.SA1629.severity = warning
# SA1633: The file header is missing or not located at the top of the file
dotnet_diagnostic.SA1633.severity = none
# CA1707: Remove the underscores from member name (disabled for test projects)
# This will be overridden in tests/.editorconfig
dotnet_diagnostic.CA1707.severity = warning