From 945106b7de5d15cfa201a367f88df56bdbce5f62 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Mon, 15 May 2023 16:39:01 +0900 Subject: [PATCH] Add Sponsor badge to extension (#455) You can also have the Sponsor badge appear in the header on the marketplace. Example here: marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint. To add that to the extension you just need to add this to the extension's package.json "sponsor": { "url": "https://opencollective.com/stylelint" } --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 4fb4a91d..68d1ed80 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,9 @@ "homepage": "https://github.com/stylelint/vscode-stylelint#readme", "bugs": "https://github.com/stylelint/vscode-stylelint/issues", "qna": "https://stackoverflow.com/questions/tagged/vscode+stylelint", + "sponsor": { + "url": "https://opencollective.com/stylelint" + }, "icon": "media/stylelint.png", "engines": { "vscode": ">=1.56.0",