Types
CheckResult = object file*: string line*: int column*: int msg*: string severity*: string stacktrace*: seq[CheckStacktrace]
- Source Edit
CheckStacktrace = object file*: string line*: int column*: int msg*: string
- Source Edit
Procs
proc nimCheck(filePath: string; nimPath: string): Future[seq[CheckResult]] {. ...stackTrace: false, raises: [], gcsafe, tags: [RootEffect], forbids: [].}
- Source Edit