-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split up Descriptors, add support for suppressor descriptors
- Loading branch information
1 parent
687c8f1
commit e622842
Showing
6 changed files
with
766 additions
and
734 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace Xunit.Analyzers; | ||
|
||
public static partial class Descriptors | ||
{ | ||
} |
Oops, something went wrong.