Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ csharp_new_line_between_query_expression_clauses = true

dotnet_diagnostic.CA1510.severity = none

# CA1720 tries to take ownership of identifier names that it shouldn't.
dotnet_diagnostic.CA1720.severity = none

# This is a nonsense requirement.
dotnet_diagnostic.IDE0130.severity = none

Expand Down
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ CS1591 - Missing XML comment.
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>Recommended</AnalysisMode>
<WTGAnalyzersWarnAll>true</WTGAnalyzersWarnAll>

<Version>1.0.0</Version>
Expand Down
2 changes: 1 addition & 1 deletion src/TypeNameInterpretation.Benchmark/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace TypeNameInterpretation.Benchmark
{
class Program
static class Program
{
static void Main(string[] args)
{
Expand Down
4 changes: 4 additions & 0 deletions src/TypeNameInterpretation.Test/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*.cs]

# Making unit tests sealed often causes other issues.
dotnet_diagnostic.CA1852.severity = none