{"id":15967130,"url":"https://github.com/itprokyle/vscode-runway","last_synced_at":"2026-01-12T09:42:06.258Z","repository":{"id":43532275,"uuid":"239172369","full_name":"ITProKyle/vscode-runway","owner":"ITProKyle","description":"Visual Studio Code extension for Runway","archived":false,"fork":false,"pushed_at":"2023-09-28T02:26:31.000Z","size":2886,"stargazers_count":0,"open_issues_count":17,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-25T10:38:12.256Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=itprokyle.vscode-runway","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ITProKyle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"ITProKyle","polar":"ITProKyle"}},"created_at":"2020-02-08T17:20:37.000Z","updated_at":"2020-12-29T13:13:34.000Z","dependencies_parsed_at":"2024-10-27T16:21:50.160Z","dependency_job_id":"4b449f36-60d6-4fd9-ad60-9a84552518e4","html_url":"https://github.com/ITProKyle/vscode-runway","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ITProKyle/vscode-runway","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ITProKyle%2Fvscode-runway","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ITProKyle%2Fvscode-runway/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ITProKyle%2Fvscode-runway/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ITProKyle%2Fvscode-runway/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ITProKyle","download_url":"https://codeload.github.com/ITProKyle/vscode-runway/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ITProKyle%2Fvscode-runway/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-07T18:20:56.324Z","updated_at":"2026-01-12T09:42:06.229Z","avatar_url":"https://github.com/ITProKyle.png","language":"TypeScript","funding_links":["https://github.com/sponsors/ITProKyle","https://polar.sh/ITProKyle"],"categories":[],"sub_categories":[],"readme":"# vscode-runway\n\n\u003e **IMPORTANT:** This extension is still in early development. It is not full featured. Expect breaking changes between versions.\n\nVisual Studio Code extension for [Runway](https://github.com/onicagroup/runway) that provides schema validation for `runway.yml`/`runway.yaml` files and configuration files for Runway's CFNgin.\n\n![vscode-runway.gif](https://raw.githubusercontent.com/ITProKyle/vscode-runway/master/assets/vscode-runway.gif)\n\n## Features\n\n- `runway.yml`/`runway.yaml` validation and autocompletion\n- CFNgin configuration file validation and autocompletion\n  - automatically applies to `**/*.cfn/*.yaml` \u0026 `**/*.cfn/*.yml` files\n- description on hover for key and values\n\n## Usage\n\n1. Install the extension.\n2. Create or open a `runway.yml`/`runway.yaml` file.\n3. Start typing or hover over existing keys.\n\n### CFNgin Configuration Files\n\nThis extension will automatically identify YAML files in a CFNgin module directory (suffix of `.cfn`) as CFNgin configuration files.\nIf using a directory without the suffix, an entry can be manually added to [workspace settings](https://code.visualstudio.com/docs/getstarted/settings).\n\nBelow is an example of the entry that is added to [user settings](https://code.visualstudio.com/docs/getstarted/settings).\nUpdate the glob patters to match the desired CFNgin configuration files (vscode will need to be reloaded after making changes).\n\n\u003e **NOTE:** The extension version is contained within this path.\n\u003e When manually adding to workspace settings, the version will need to be maintained manually.\n\n```json\n{\n    \"yaml.schemas\": {\n        \"file:///Users/kyle/.vscode/extensions/itprokyle.vscode-runway-0.0.0/schemas/cfngin.schema.json\": [\n            \"**/*.cfn/*.yaml\",\n            \"**/*.cfn/*.yml\"\n        ]\n    }\n}\n```\n\n## How It Works\n\nThis extension modifies the [user settings](https://code.visualstudio.com/docs/getstarted/settings) of Visual Studio Code to append a schema to the `yaml.schemas` configuration property of the [redhat.vscode-yaml](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) extension.\nThe YAML extension consumes the schema provided here to produce autocompletion and information on keys and values upon hover.\n\n## Requirements\n\n- [redhat.vscode-yaml](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) extension\n\n## Release Notes\n\nAll release notes can be viewed in the [releases](https://github.com/ITProKyle/vscode-runway/releases) section of the repo.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitprokyle%2Fvscode-runway","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitprokyle%2Fvscode-runway","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitprokyle%2Fvscode-runway/lists"}