@@ -108,10 +108,18 @@ MA0053.public_class_should_be_sealed = false
108
108
# TODO: Remove exclusion when issues are fixed
109
109
dotnet_diagnostic.MA0055.severity = none
110
110
111
+ # MA0089: Optimize string method usage
112
+ # https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0089.md
113
+ dotnet_diagnostic.MA0089.severity = none
114
+
111
115
# MA0110: Use the Regex source generator
112
116
# https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0110.md
113
117
dotnet_diagnostic.MA0110.severity = none
114
118
119
+ # MA0026: Fix TODO comment
120
+ # https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0026.md
121
+ dotnet_diagnostic.MA0026.severity = none
122
+
115
123
# ### .NET Compiler Platform analysers rules ####
116
124
117
125
# CA1030: Use events where appropriate
@@ -152,10 +160,30 @@ dotnet_diagnostic.CA3075.severity = none
152
160
# https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0004
153
161
dotnet_diagnostic.IDE0004.severity = none
154
162
163
+ # IDE0047: Remove unnecessary parentheses
164
+ # https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0047-ide0048
165
+ dotnet_diagnostic.IDE0047.severity = none
166
+
155
167
# IDE0048: Add parentheses for clarity
156
- # https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0047
168
+ # https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0047-ide0048
157
169
dotnet_diagnostic.IDE0048.severity = none
158
170
159
171
# IDE0305: Collection initialization can be simplified
160
172
# https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0305
161
173
dotnet_diagnostic.IDE0305.severity = none
174
+
175
+ # IDE0046: Use conditional expression for return
176
+ # https://learn.microsoft.com/en-ca/dotnet/fundamentals/code-analysis/style-rules/ide0046
177
+ dotnet_diagnostic.IDE0046.severity = none
178
+
179
+ # IDE0032: Use auto-implemented property
180
+ # https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0032
181
+ dotnet_diagnostic.IDE0032.severity = none
182
+
183
+ # CA5350: Do Not Use Weak Cryptographic Algorithms
184
+ # https://learn.microsoft.com/en-ca/dotnet/fundamentals/code-analysis/quality-rules/ca5350
185
+ dotnet_diagnostic.CA5350.severity = none
186
+
187
+ # CA5351: Do Not Use Broken Cryptographic Algorithms
188
+ # https://learn.microsoft.com/en-ca/dotnet/fundamentals/code-analysis/quality-rules/ca5351
189
+ dotnet_diagnostic.CA5351.severity = none
0 commit comments