Skip to content

Commit 94b81ba

Browse files
committed
Rename qlpack.yml -> codeql-pack.yml in generator.
1 parent c6481ca commit 94b81ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

extensions/ql-vscode/src/qlpack-generator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ export class QlPackGenerator {
3434
this.qlpackVersion = "1.0.0";
3535
this.header = "# This is an automatically generated file.\n\n";
3636

37-
this.qlpackFileName = "qlpack.yml";
37+
this.qlpackFileName = "codeql-pack.yml";
3838
this.folderUri = Uri.file(join(this.storagePath, this.folderName));
3939
}
4040

4141
public async generate() {
4242
// create QL pack folder and add to workspace
4343
await this.createWorkspaceFolder();
4444

45-
// create qlpack.yml
45+
// create codeql-pack.yml
4646
await this.createQlPackYaml();
4747

4848
// create example.ql

extensions/ql-vscode/test/vscode-tests/minimal-workspace/qlpack-generator.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe("QlPackGenerator", () => {
2323
packFolderName = `test-ql-pack-${language}`;
2424
packFolderPath = Uri.file(join(dir.name, packFolderName)).fsPath;
2525

26-
qlPackYamlFilePath = join(packFolderPath, "qlpack.yml");
26+
qlPackYamlFilePath = join(packFolderPath, "codeql-pack.yml");
2727
exampleQlFilePath = join(packFolderPath, "example.ql");
2828

2929
packAddSpy = jest.fn();

0 commit comments

Comments
 (0)