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,10 @@
using System.Collections.Generic;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace wvdet.CodeChecker
{
public interface ICheckable
{
List<Detail> Check(string filepath, CompilationUnitSyntax root);
}
}