We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14f58df + 8bf8adf commit 4be573cCopy full SHA for 4be573c
1 file changed
extensions/ql-vscode/src/qlpack-generator.ts
@@ -72,15 +72,16 @@ export class QlPackGenerator {
72
const exampleQl = `
73
/**
74
* This is an automatically generated file
75
- * @name Empty block
+ * @name Hello world
76
* @kind problem
77
* @problem.severity warning
78
- * @id ${this.queryLanguage}/example/empty-block
+ * @id ${this.queryLanguage}/example/hello-world
79
*/
80
81
import ${this.queryLanguage}
82
83
-select "Hello, world!"
+from File f
84
+select f, "Hello, world!"
85
`.trim();
86
87
await writeFile(exampleQlFilePath, exampleQl, "utf8");
0 commit comments