-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix sync ci after structure changes (#289)
- Loading branch information
Showing
5 changed files
with
413 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "JSON schema for MoonBit moon.mod.json files", | ||
"description": "A module of MoonBit lang", | ||
"type": "object", | ||
"required": [ | ||
"name" | ||
], | ||
"properties": { | ||
"alert-list": { | ||
"description": "Alert list setting of the module", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"deps": { | ||
"description": "third-party dependencies of the module", | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"additionalProperties": { | ||
"type": "string" | ||
} | ||
}, | ||
"description": { | ||
"description": "description of this module", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"keywords": { | ||
"description": "keywords of this module", | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"license": { | ||
"description": "license of this module", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"name": { | ||
"description": "name of the module", | ||
"type": "string" | ||
}, | ||
"readme": { | ||
"description": "path to module's README file", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"repository": { | ||
"description": "url to module's repository", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"source": { | ||
"description": "source code directory of this module", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"version": { | ||
"description": "version of the module", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"warn-list": { | ||
"description": "Warn list setting of the module", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.