vscode json schema is untrusted

Tech
VSCode

biome.jsonでremoteのschemaを利用する

biome.json
{
  "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json"
}

すると下記のように警告が出る

VSCode Problems Panel
Unable to load schema from 'https://biomejs.dev/schemas/2.3.14/schema.json':
Location https://biomejs.dev/schemas/2.3.14/schema.json is untrusted.

vscodeのsettings.jsonに下記の設定を加えると警告が消えた

settings.json
{
  "json.schemaDownload.trustedDomains": {
    "https://biomejs.dev/": true
  }
}

さらに下記のようにすると、すべてのドメインを許可して今後一切の警告が出なくなった

settings.json
{
  "json.schemaDownload.trustedDomains": {
    "*": true
  }
}