mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-24 21:59:04 +00:00
Replace deprecated json.schemastore.org with www.schemastore.org (#42336)
Release Notes: - N/A According to [microsoft/vscode#254689](https://github.com/microsoft/vscode/issues/254689), the json.schemastore.org domain has been deprecated and should now use www.schemastore.org (or schemastore.org) instead. This PR updates all occurrences of the old domain within the Zed codebase, including code, documentation, and configuration files.
This commit is contained in:
parent
b8fcd3ea04
commit
dfd7e85d5d
5 changed files with 12 additions and 12 deletions
2
.github/ISSUE_TEMPLATE/config.yml
vendored
2
.github/ISSUE_TEMPLATE/config.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
# yaml-language-server: $schema=https://json.schemastore.org/github-issue-config.json
|
||||
# yaml-language-server: $schema=https://www.schemastore.org/github-issue-config.json
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Feature Request
|
||||
|
|
|
|||
|
|
@ -1030,22 +1030,22 @@
|
|||
"$ref": "#"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"$ref": "https://json.schemastore.org/eslintrc.json"
|
||||
"$ref": "https://www.schemastore.org/eslintrc.json"
|
||||
},
|
||||
"prettier": {
|
||||
"$ref": "https://json.schemastore.org/prettierrc.json"
|
||||
"$ref": "https://www.schemastore.org/prettierrc.json"
|
||||
},
|
||||
"stylelint": {
|
||||
"$ref": "https://json.schemastore.org/stylelintrc.json"
|
||||
"$ref": "https://www.schemastore.org/stylelintrc.json"
|
||||
},
|
||||
"ava": {
|
||||
"$ref": "https://json.schemastore.org/ava.json"
|
||||
"$ref": "https://www.schemastore.org/ava.json"
|
||||
},
|
||||
"release": {
|
||||
"$ref": "https://json.schemastore.org/semantic-release.json"
|
||||
"$ref": "https://www.schemastore.org/semantic-release.json"
|
||||
},
|
||||
"jscpd": {
|
||||
"$ref": "https://json.schemastore.org/jscpd.json"
|
||||
"$ref": "https://www.schemastore.org/jscpd.json"
|
||||
},
|
||||
"pnpm": {
|
||||
"description": "Defines pnpm specific configuration.",
|
||||
|
|
@ -1305,5 +1305,5 @@
|
|||
]
|
||||
}
|
||||
],
|
||||
"$id": "https://json.schemastore.org/package.json"
|
||||
"$id": "https://www.schemastore.org/package.json"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1466,7 +1466,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"id": "https://json.schemastore.org/tsconfig",
|
||||
"id": "https://www.schemastore.org/tsconfig",
|
||||
"title": "JSON schema for the TypeScript compiler's configuration file",
|
||||
"type": "object"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ To get completions for `deno.json` or `package.json` you can add the following t
|
|||
"fileMatch": [
|
||||
"package.json"
|
||||
],
|
||||
"url": "http://json.schemastore.org/package"
|
||||
"url": "https://www.schemastore.org/package"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ You can configure various [yaml-language-server settings](https://github.com/red
|
|||
"singleQuote": true
|
||||
},
|
||||
"schemas": {
|
||||
"http://json.schemastore.org/composer": ["/*"],
|
||||
"https://getcomposer.org/schema.json": ["/*"],
|
||||
"../relative/path/schema.json": ["/config*.yaml"]
|
||||
}
|
||||
}
|
||||
|
|
@ -70,7 +70,7 @@ By default yaml-language-server will attempt to determine the correct schema for
|
|||
You can override any auto-detected schema via the `schemas` settings key (demonstrated above) or by providing an [inlined schema](https://github.com/redhat-developer/yaml-language-server#using-inlined-schema) reference via a modeline comment at the top of your yaml file:
|
||||
|
||||
```yaml
|
||||
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json
|
||||
# yaml-language-server: $schema=https://www.schemastore.org/github-action.json
|
||||
name: Issue Assignment
|
||||
on:
|
||||
issues:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue