Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #575

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"everytime",
"overridable",
"Untarget"
],
"githubPullRequests.ignoredPullRequestBranches": [
"master"
]
}
6 changes: 3 additions & 3 deletions schemas/manifest_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"minGameVersion": {
"type": "string",
"description": "The minimum version of the game that this mod is compatible with",
"default": ""
"default": "",
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$",
"examples": [
"1.0.0",
Expand All @@ -103,7 +103,7 @@
"maxGameVersion": {
"type": "string",
"description": "The maximum version of the game that this mod is compatible with",
"default": ""
"default": "",
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$",
"examples": [
"1.0.0",
Expand All @@ -119,7 +119,7 @@
"incompatibleVendors": {
"type": "array",
"description": "The vendors this mod does not work on",
"default": []
"default": [],
"items": {
"type": "string",
"enum": [
Expand Down
Loading