Skip to content

Commit

Permalink
style: Remove warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
s2quake committed Jun 15, 2024
1 parent cb5ba52 commit ac1e5f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ dotnet_diagnostic.SA1309.severity = none
# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = none

# SA1602: Enumeration items should be documented
dotnet_diagnostic.SA1602.severity = none

# S1133: Deprecated code should be removed
dotnet_diagnostic.S1133.severity = none

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ namespace JSSoft.Communication.Services;
public enum Authority
{
/// <summary>
/// Administrator
/// Administrator.
/// </summary>
Admin,

/// <summary>
/// Member
/// Member.
/// </summary>
Member,

/// <summary>
/// Guest
/// Guest.
/// </summary>
Guest,
}

0 comments on commit ac1e5f2

Please sign in to comment.