Skip to content

Commit

Permalink
Split up Descriptors, add support for suppressor descriptors
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Mar 2, 2024
1 parent 687c8f1 commit e622842
Show file tree
Hide file tree
Showing 6 changed files with 766 additions and 734 deletions.
13 changes: 13 additions & 0 deletions src/xunit.analyzers/Utility/Category.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace Xunit.Analyzers;

public enum Category
{
// 1xxx
Usage,

// 2xxx
Assertions,

// 3xxx
Extensibility,
}
5 changes: 5 additions & 0 deletions src/xunit.analyzers/Utility/Descriptors.Suppressors.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
namespace Xunit.Analyzers;

public static partial class Descriptors
{
}
Loading

0 comments on commit e622842

Please sign in to comment.