@@ -108,10 +108,18 @@ MA0053.public_class_should_be_sealed = false
108108#  TODO: Remove exclusion when issues are fixed
109109dotnet_diagnostic.MA0055.severity  = none 
110110
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+ 
111115#  MA0110: Use the Regex source generator
112116#  https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0110.md
113117dotnet_diagnostic.MA0110.severity  = none 
114118
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+ 
115123# ### .NET Compiler Platform analysers rules ####
116124
117125#  CA1030: Use events where appropriate
@@ -152,10 +160,30 @@ dotnet_diagnostic.CA3075.severity = none
152160#  https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0004
153161dotnet_diagnostic.IDE0004.severity  = none 
154162
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+ 
155167#  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 
157169dotnet_diagnostic.IDE0048.severity  = none 
158170
159171#  IDE0305: Collection initialization can be simplified
160172#  https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0305
161173dotnet_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