Skip to content

Commit 6717d13

Browse files
committed
Merge branch 'topic/fix-lint-errors' into 'master'
Fix lint errors See merge request eng/ide/ada_language_server!1844
2 parents e83872a + 08cf8e9 commit 6717d13

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

integration/vscode/ada/src/taskProviders.ts

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ const predefinedTasks: PredefinedTask[] = [
162162
},
163163
/**
164164
* Analysis results are not printed on stdio so no need to parse them
165-
* with a problem matcher. Results should be viewed with the `gnatsas
166-
* report` task below. Note that the "--root" argument is required so
165+
* with a problem matcher. Results should be viewed with the 'gnatsas
166+
* report' task below. Note that the "--root" argument is required so
167167
* the file URIs in the SARIF file are relative to the workspace root
168168
* folder and SARIF-viewer extensions can correctly resolve them.
169169
*/
@@ -174,8 +174,15 @@ const predefinedTasks: PredefinedTask[] = [
174174
taskDef: {
175175
type: TASK_TYPE_ADA,
176176
command: 'gnatsas',
177-
args: ['report', 'sarif', '${command:ada.gprProjectArgs}', '-o', 'report.sarif',
178-
'--root', '${workspaceFolder}'],
177+
args: [
178+
'report',
179+
'sarif',
180+
'${command:ada.gprProjectArgs}',
181+
'-o',
182+
'report.sarif',
183+
'--root',
184+
'${workspaceFolder}',
185+
],
179186
},
180187
/**
181188
* Analysis results are not printed on stdio so no need to parse them

0 commit comments

Comments
 (0)