From d91b88dbe7255f14223f38c1c1e4b54a0311c34d Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:56:58 +0200 Subject: [PATCH] Match only YAML files with `gxwf` sufix The `firstLine` regex doesn't seem to discriminate any other kind of YAML file, so for the sake of getting less false positives, let's limit the activation matching to workflows files that have the sufix `gxwf.yml`. --- package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/package.json b/package.json index 722e634..9d9923a 100644 --- a/package.json +++ b/package.json @@ -61,10 +61,8 @@ "Galaxy Workflow (YAML)" ], "extensions": [ - ".yml", ".gxwf.yml" ], - "firstLine": "^class: GalaxyWorkflow", "configuration": "./workflow-languages/configurations/yml.language-configuration.json" } ],