-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.globalconfig
57 lines (35 loc) · 1.76 KB
/
.globalconfig
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
is_global = true
# IDE0160: Convert to file-scoped namespace
csharp_style_namespace_declarations = file_scoped:warning
# SA1200: Using directives should be placed correctly
dotnet_diagnostic.SA1200.severity = none
# SA1101: Prefix local calls with this
dotnet_diagnostic.SA1101.severity = none
# SA1503: Braces should not be omitted
dotnet_diagnostic.SA1503.severity = none
# SA1308: Variable names should not be prefixed
dotnet_diagnostic.SA1308.severity = none
# SA1633: File should have header
dotnet_diagnostic.SA1633.severity = none
# SA1202: Elements should be ordered by access
dotnet_diagnostic.SA1202.severity = none
# SA1648: inheritdoc should be used with inheriting class
dotnet_diagnostic.SA1648.severity = none
# SA1309: field names must not begin with underscore
dotnet_diagnostic.SA1309.severity = none
# CA1851: Possible multiple enumerations of 'IEnumerable' collection.
dotnet_diagnostic.CA1851.severity = warning
# CA1852: Seal internal types
dotnet_diagnostic.CA1852.severity = warning
# naming rules:
dotnet_naming_rule.private_members_with_underscore.symbols = private_fields
dotnet_naming_rule.private_members_with_underscore.style = prefix_underscore
dotnet_naming_rule.private_members_with_underscore.severity = suggestion
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
dotnet_naming_style.prefix_underscore.capitalization = camel_case
dotnet_naming_style.prefix_underscore.required_prefix = _
# SA1309: Field names should not begin with underscore
dotnet_diagnostic.SA1309.severity = none
# SA1204: Static elements should appear before instance elements
dotnet_diagnostic.SA1204.severity = none