Skip to content

Commit 55e527b

Browse files
Randall FlaggRandall Flagg
authored andcommitted
Add new rules to editorconfig and removed them from the .csproj files
1 parent 1fd4864 commit 55e527b

6 files changed

Lines changed: 17 additions & 7 deletions

File tree

src/.editorconfig

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,21 @@ dotnet_naming_style.begins_with_i.required_suffix =
245245
dotnet_naming_style.begins_with_i.word_separator =
246246
dotnet_naming_style.begins_with_i.capitalization = pascal_case
247247

248+
#### The Nullable Knights ####
249+
250+
dotnet_diagnostic.CS8625.severity = none
251+
dotnet_diagnostic.CS8603.severity = none
252+
dotnet_diagnostic.CS8618.severity = none
253+
dotnet_diagnostic.CS8600.severity = none
254+
dotnet_diagnostic.CS8602.severity = none
255+
dotnet_diagnostic.CS8604.severity = none
256+
dotnet_diagnostic.CS8622.severity = none
257+
dotnet_diagnostic.CS8601.severity = none
258+
dotnet_diagnostic.CS8605.severity = none
259+
dotnet_diagnostic.CS0649.severity = none
260+
dotnet_diagnostic.CS0169.severity = none
261+
dotnet_diagnostic.CS1591.severity = none
262+
248263
#### Analyzers Rules ####
249264

250265
## Microsoft.CodeAnalysis.CSharp.CodeStyle
@@ -4849,4 +4864,4 @@ dotnet_diagnostic.xUnit2019.severity = none
48494864
dotnet_diagnostic.xUnit3000.severity = warning
48504865

48514866
# xUnit3001: Classes that implement Xunit.Abstractions.IXunitSerializable must have a public parameterless constructor
4852-
dotnet_diagnostic.xUnit3001.severity = warning
4867+
dotnet_diagnostic.xUnit3001.severity = warning

src/ColumnizerLib/ColumnizerLib.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
<RootNamespace>LogExpert</RootNamespace>
77
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
88
<DocumentationFile>$(SolutionDir)..\bin\Docs\ColumnizerLib.xml</DocumentationFile>
9-
<IsTestProject>false</IsTestProject>
9+
<IsTestProject>false</IsTestProject>
1010
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1111
<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>
12-
<NoWarn>CS1591;</NoWarn>
1312
</PropertyGroup>
1413
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1514
<Optimize>False</Optimize>

src/LogExpert.Core/LogExpert.Core.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<SignAssembly>True</SignAssembly>
1010
<AssemblyOriginatorKeyFile>..\Solution Items\Key.snk</AssemblyOriginatorKeyFile>
1111
<PublishAot>false</PublishAot>
12-
<NoWarn>CS8625;CS8603;CS8618;CS8600;CS8603;CS8602;CS8604;CS8622;CS8601;</NoWarn>
1312
</PropertyGroup>
1413

1514
<ItemGroup>

src/LogExpert.UI/LogExpert.UI.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<ForceDesignerDPIUnaware>true</ForceDesignerDPIUnaware>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<ImplicitUsings>enable</ImplicitUsings>
10-
<NoWarn>CS8625;CS8603;CS8618;CS8600;CS8603;CS8602;CS8604;CS8622;CS8601;CS8605;</NoWarn>
1110
<Nullable>enable</Nullable>
1211
<PublishAot>false</PublishAot>
1312
<SignAssembly>True</SignAssembly>

src/LogExpert/LogExpert.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
1414
<ImplicitUsings>enable</ImplicitUsings>
1515
<IsTestProject>False</IsTestProject>
16-
<NoWarn>CS1591;</NoWarn>
1716
<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>
1817
<OutputType>WinExe</OutputType>
1918
<SignAssembly>True</SignAssembly>

src/PluginRegistry/LogExpert.PluginRegistry.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<Nullable>enable</Nullable>
88
<SignAssembly>True</SignAssembly>
99
<AssemblyOriginatorKeyFile>..\Solution Items\Key.snk</AssemblyOriginatorKeyFile>
10-
<NoWarn>CS8600;CS8603;CS8618;</NoWarn>
1110
</PropertyGroup>
1211

1312
<ItemGroup>

0 commit comments

Comments
 (0)