-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
43 lines (33 loc) · 956 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 is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = true
[*.cs]
csharp_style_namespace_declarations = file_scoped:warning
# IDE0057: Use range operator
[Core/**/*.cs]
dotnet_diagnostic.IDE0057.severity = none
# IDE0290: Use primary constructor
[*.cs]
dotnet_diagnostic.IDE0290.severity = none
# CA1031: Do not catch general exception types
[*.cs]
dotnet_diagnostic.CA1031.severity = none
# CA1510: Use ArgumentNullException throw helper
[*.cs]
dotnet_diagnostic.CA1510.severity = none
# CA1515: Consider making public types internal
[*.cs]
dotnet_diagnostic.CA1515.severity = none
# CA1707: Identifiers should not contain underscores
[Tests/**/*.cs]
dotnet_diagnostic.CA1707.severity = none
# CA1813: Avoid unsealed attributes
[*.cs]
dotnet_diagnostic.CA1813.severity = none