This commit is contained in:
2025-03-04 16:02:44 +08:00
parent 207a2dc5a5
commit 1e49f4b547
149 changed files with 7394 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections.Generic;
namespace wvdet.CodeChecker
{
public enum Level
{
Hint,
Warning,
Error,
}
public class Result
{
public string filepath;
public int warningCount;
public int errorCount;
public List<Detail> details = new List<Detail>();
}
public class Detail
{
public int line = -1;
public Level level;
public string suggestion;
public string guideline;
public string codeSnippet;
}
}