File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,13 @@ csharp_prefer_simple_default_expression = true:suggestion
119
119
120
120
dotnet_code_quality_unused_parameters = non_public:suggestion
121
121
122
+ # Dotnet diagnostic settings:
123
+ [* .cs ]
124
+
125
+ # CA1859: Use concrete types when possible for improved performance
126
+ # https://learn.microsoft.com/en-gb/dotnet/fundamentals/code-analysis/quality-rules/ca1859
127
+ dotnet_diagnostic.CA1859.severity = suggestion
128
+
122
129
# CSharp code style settings:
123
130
[* .cs ]
124
131
Original file line number Diff line number Diff line change 11
11
# CI runs with PowerShell 5.0, so don't use features like ?: && ||
12
12
Set-StrictMode - Version 3.0
13
13
14
- # On Unix paths is separated by colon
14
+ # On Unix paths is separated by colon.
15
15
# On Windows paths is separated by semicolon
16
16
$script :TestModulePathSeparator = [System.IO.Path ]::PathSeparator
17
17
$script :Options = $null
You can’t perform that action at this time.
0 commit comments