{"id":19521452,"url":"https://github.com/vknabel/vscode-swift-coverage","last_synced_at":"2025-09-29T05:31:55.779Z","repository":{"id":49330877,"uuid":"291255645","full_name":"vknabel/vscode-swift-coverage","owner":"vknabel","description":"Display coverage reports next to your code for Swift Package Manager projects.","archived":false,"fork":false,"pushed_at":"2024-06-28T07:15:17.000Z","size":1158,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-01-13T01:09:02.356Z","etag":null,"topics":["codecov","codecoverage","coverage","swift","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=vknabel.swift-coverage","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vknabel.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}},"created_at":"2020-08-29T11:11:55.000Z","updated_at":"2024-09-09T10:19:47.000Z","dependencies_parsed_at":"2024-06-28T08:54:10.649Z","dependency_job_id":null,"html_url":"https://github.com/vknabel/vscode-swift-coverage","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vknabel%2Fvscode-swift-coverage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vknabel%2Fvscode-swift-coverage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vknabel%2Fvscode-swift-coverage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vknabel%2Fvscode-swift-coverage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vknabel","download_url":"https://codeload.github.com/vknabel/vscode-swift-coverage/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234594214,"owners_count":18857420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["codecov","codecoverage","coverage","swift","vscode","vscode-extension"],"created_at":"2024-11-11T00:32:18.148Z","updated_at":"2025-09-29T05:31:50.480Z","avatar_url":"https://github.com/vknabel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# swift-coverage\n\nDisplay coverage reports next to your code for Swift Package Manager projects.\n\n![](./assets/docs/example.png)\n\nTo update and show your coverage statistics, run your tests with code coverage enabled.\n\n```bash\nswift test --enable-code-coverage\n```\n\n## Configuration\n\n| Config                                        | Type                    | Default                                       | Description                                                             |\n| --------------------------------------------- | ----------------------- | --------------------------------------------- | ----------------------------------------------------------------------- |\n| swift-coverage.coverageFilePattern            | `string`; glob pattern  | `**/.build/*/debug/{coverage,codecov}/*.json` | The pattern where to find the llvm-codecov JSON-reports.                |\n| swift-coverage.highlightsCoveredText          | `boolean`               | `false`                                       | Wether code with coverage should have a higlighted background.          |\n| swift-coverage.highlightsNotCoveredText       | `boolean`               | `true`                                        | Wether code with no coverage should have a higlighted background.       |\n| swift-coverage.coveredTextBackground.dark     | `string`, CSS-color     | `rgba(48, 209, 88, 0.25)`                     | The brackground color used to highlight code with coverage.             |\n| swift-coverage.coveredTextBackground.light    | `string`, CSS-color     | `rgba(52, 199, 89, 0.25)`                     | The brackground color used to highlight code with coverage.             |\n| swift-coverage.notCoveredTextBackground.dark  | `string`, CSS-color     | `rgba(255, 69, 58, 0.25)`                     | The brackground color used to highlight code with no coverage.          |\n| swift-coverage.notCoveredTextBackground.light | `string`, CSS-color     | `rgba(255, 59, 48, 0.25)`                     | The brackground color used to highlight code with no coverage.          |\n| swift-coverage.highlightsCoveredGutter        | `boolean`               | `true`                                        | Wether lines with coverage should have a highlight-gutter.              |\n| swift-coverage.highlightsNotCoveredGutter     | `boolean`               | `true`                                        | Wether lines with no coverage should have a highlight-gutter.           |\n| swift-coverage.highlightsMixedGutter          | `boolean`               | `true`                                        | Wether lines with mixed coverage should have a highlight-gutter.        |\n| swift-coverage.coveredGutterIcon.dark         | `string`, absolute path | green indicator (builtin)                     | The path to the gutter-icon used to highlight code with coverage.       |\n| swift-coverage.coveredGutterIcon.light        | `string`, absolute path | green indicator (builtin)                     | The path to the gutter-icon used to highlight code with coverage.       |\n| swift-coverage.notCoveredGutterIcon.dark      | `string`, absolute path | red indicator (builtin)                       | The path to the gutter-icon used to highlight code without coverage.    |\n| swift-coverage.notCoveredGutterIcon.light     | `string`, absolute path | red indicator (builtin)                       | The path to the gutter-icon used to highlight code without coverage.    |\n| swift-coverage.mixedGutterIcon.dark           | `string`, absolute path | orange indicator (builtin)                    | The path to the gutter-icon used to highlight code with mixed coverage. |\n| swift-coverage.mixedGutterIcon.light          | `string`, absolute path | orange indicator (builtin)                    | The path to the gutter-icon used to highlight code with mixed coverage. |\n\n## Contributors\n\n- Valentin Knabel, [@vknabel](https://github.com/vknabel)\n\n## License\n\nvscode-swift-coverage is available under the [MIT](./LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvknabel%2Fvscode-swift-coverage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvknabel%2Fvscode-swift-coverage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvknabel%2Fvscode-swift-coverage/lists"}