New version of Upsilon doesn't save data comments by default, so we need to enable that

This commit is contained in:
Deukhoofd 2018-11-27 12:41:32 +01:00
parent a3043004da
commit 238c2daa70
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
3 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ namespace UpsilonLanguageServer
private static readonly ScriptOptions Options = new ScriptOptions()
{
ThrowExceptionOnError = false
ThrowExceptionOnError = false,
SaveDataComments = true
};
private static async Task RealLint(TextDocument document, int maxNumberOfProblems, SessionDocument session,