-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
22 lines (16 loc) · 905 Bytes
/
.editorconfig
File metadata and controls
22 lines (16 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[*.cs]
# Naming styles
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
# Static readonly fields should be PascalCase
dotnet_naming_symbols.static_readonly_fields.applicable_kinds = field
dotnet_naming_symbols.static_readonly_fields.applicable_accessibilities = *
dotnet_naming_symbols.static_readonly_fields.required_modifiers = static, readonly
dotnet_naming_rule.static_readonly_fields_should_be_pascal_case.symbols = static_readonly_fields
dotnet_naming_rule.static_readonly_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_rule.static_readonly_fields_should_be_pascal_case.severity = warning
# RCS1123: Add parentheses when necessary
dotnet_diagnostic.RCS1123.severity = silent
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = silent
# CA1848: Use the LoggerMessage delegates
dotnet_diagnostic.CA1848.severity = silent