Skip to content

Commit

Permalink
Resolve warnings
Browse files Browse the repository at this point in the history
- Suppressed non applicable warnings (naming for enum values and unused members)
  • Loading branch information
DanRigby committed Jun 7, 2022
1 parent c36d2d5 commit a738df4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,6 @@ node_modules/
*.dsw
*.dsp

# Visual Studio 6 technical files
*.ncb
*.aps

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
Expand Down Expand Up @@ -392,3 +388,7 @@ FodyWeavers.xsd
# JetBrains Rider
*.sln.iml
.idea/

# Misc
.DS_Store
inspectcode.xml
4 changes: 3 additions & 1 deletion MudProxy/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.CommandLine;
// ReSharper disable RedundantLambdaParameterType

using System.CommandLine;
using MudProxy;

CancellationTokenSource cancelTokenSource = new();
Expand Down
5 changes: 4 additions & 1 deletion MudProxy/TelnetCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace MudProxy;
// ReSharper disable UnusedMember.Global
// ReSharper disable InconsistentNaming

namespace MudProxy;

public enum TelnetCommand : byte
{
Expand Down
4 changes: 3 additions & 1 deletion MudProxy/TelnetCommandSequence.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
namespace MudProxy;
// ReSharper disable UnusedMember.Global

namespace MudProxy;

public static class TelnetCommandSequence
{
Expand Down
2 changes: 2 additions & 0 deletions MudProxy/TelnetOption.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// ReSharper disable IdentifierTypo
// ReSharper disable CommentTypo
// ReSharper disable UnusedMember.Global
// ReSharper disable InconsistentNaming

// https://mudcoders.fandom.com/wiki/List_of_Telnet_Options
// https://github.com/daxuzi/mushclient/blob/master/MUSHclient/worlds/plugins/Code_Chart.xml
Expand Down

0 comments on commit a738df4

Please sign in to comment.