Skip to content

Commit 07bd60b

Browse files
committed
remove base item from diagnostic reports
1 parent 64498c0 commit 07bd60b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diagnostic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { readFileSync } from 'fs';
1414
export function createSyntaxScriptDiagnosticReport(filePath: string,fileContent?:string): FullDocumentDiagnosticReport {
1515
const isSyx: boolean = filePath.endsWith('.syx');
1616

17-
const items:Diagnostic[] = [{message:'Base',range:{end:{character:0,line:1},start:{character:0,line:0}},severity:DiagnosticSeverity.Warning,source:'syntax-script'}];
17+
const items:Diagnostic[] = [];
1818

1919
try {
2020

0 commit comments

Comments
 (0)