"description": "Whether to decorate each line with a background color based on its coverage.",
"type": "boolean",
"default": true
},
"codecov.decorations.lineHitCounts": {
"description": "Whether to decorate the end of each covered line with the hit/branch stats.",
"type": "boolean",
"default": false
},
"codecov.hideCoverageButton": {
"description": "Whether to hide the file coverage ratio item in the toolbar (in a button labeled \"Coverage: N%\").",
"type": "boolean",
"default": false
},
"codecov.endpoints": {
"description": "An array of Codecov endpoints that are contacted to retrieve coverage data. Currently only 1 endpoint is supported.\n\nIf empty or not set, https://codecov.io is used.",
"type": "array",
"maxLength": 1,
"items": {
"description": "A Codecov endpoint (either https://codecov.io or Codecov Enterprise).",
"type": "object",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL for this Codecov endpoint.",
"type": "string",
"format": "uri",
"default": "https://codecov.io",
"examples": [
"https://codecov.io",
"https://codecov.example.com"
]
},
"token": {
"description": "The Codecov API token for this endpoint (required for private repositories).",
"type": "string"
},
"type": {
"description": "Define hosted version control type (gh|ghe|bb|gl):",