English | 简体中文 | Github | Gitee
Note: It has been moved to a new repo (schema) to manage together.
- Provide friendly prompts and verification when writing app manifests.
-
When writing an app manifest, adding the following attributes can get prompts and validations from the editor.
Recommend using vscode
-
The first way: Add this property directly in json file.
"$schema": "https://abgox.github.io/schema/Scoop/en-US/manifest-min.json",
-
The second way: It can be added in the vscode configuration file (settings.json), which will apply to all matching json files.
- If you're not using vscode, you'll need to look up the official configuration method for the editor you're using
"json.schemas": [ { "url": "https://abgox.github.io/schema/Scoop/en-US/manifest-min.json", "fileMatch": [ "bucket/**/*.json", "deprecated/**/*.json" ] } ]
-
The second way is recommended. It isn't intrusive on the original json file.
-
-
Url (Remove the
-min
from the file name, which means the uncompressed file.)-
https://abgox.github.io/schema/Scoop/zh-CN/manifest-min.json
-
https://abgox.github.io/schema/Scoop/en-US/manifest-min.json
-