You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -371,11 +371,23 @@
371
371
"default": false,
372
372
"description": "Allow database to be downloaded via HTTP. Warning: enabling this option will allow downloading from insecure servers."
373
373
},
374
-
"codeQL.createQuery.folder": {
374
+
"codeQL.createQuery.qlPackLocation": {
375
375
"type": "string",
376
-
"default": "",
377
376
"patternErrorMessage": "Please enter a valid folder",
378
-
"markdownDescription": "The name of the folder where we want to create queries and query packs via the \"CodeQL: Create Query\" command. The folder should exist."
377
+
"markdownDescription": "The name of the folder where we want to create queries and QL packs via the \"CodeQL: Create Query\" command. The folder should exist."
378
+
},
379
+
"codeQL.createQuery.autogenerateQlPacks": {
380
+
"type": "string",
381
+
"default": "ask",
382
+
"enum": [
383
+
"ask",
384
+
"never"
385
+
],
386
+
"enumDescriptions": [
387
+
"Ask to create a QL pack when a new CodeQL database is added.",
388
+
"Never create a QL pack when a new CodeQL database is added."
389
+
],
390
+
"description": "Ask the user to generate a QL pack when a new CodeQL database is downloaded."
0 commit comments