summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorVirgile Andreani <armavica@ulminfo.fr>2024-03-20 17:50:12 -0400
committerGitHub <noreply@github.com>2024-03-20 22:50:12 +0100
commit0e49f04a6b249090cf3703c5dac041a51e6bf530 (patch)
tree9807d68b5a52c3a35465a02c80a591c979d1c240 /.github
parentd879317d513282e62d57347275911be042ee230d (diff)
feat(quarto): Add Quarto module (#5820)
Add Quarto module * Adapted from the Typst module
Diffstat (limited to '.github')
-rw-r--r--.github/config-schema.json72
1 files changed, 72 insertions, 0 deletions
diff --git a/.github/config-schema.json b/.github/config-schema.json
index f293dd260..f1f9c86b4 100644
--- a/.github/config-schema.json
+++ b/.github/config-schema.json
@@ -1365,6 +1365,27 @@
}
]
},
+ "quarto": {
+ "default": {
+ "detect_extensions": [
+ "qmd"
+ ],
+ "detect_files": [
+ "_quarto.yml"
+ ],
+ "detect_folders": [],
+ "disabled": false,
+ "format": "via [$symbol($version )]($style)",
+ "style": "bold #75AADB",
+ "symbol": "⨁ ",
+ "version_format": "v${raw}"
+ },
+ "allOf": [
+ {
+ "$ref": "#/definitions/QuartoConfig"
+ }
+ ]
+ },
"raku": {
"default": {
"detect_extensions": [
@@ -5046,6 +5067,57 @@
}
]
},
+ "QuartoConfig": {
+ "type": "object",
+ "properties": {
+ "format": {
+ "default": "via [$symbol($version )]($style)",
+ "type": "string"
+ },
+ "version_format": {
+ "default": "v${raw}",
+ "type": "string"
+ },
+ "symbol": {
+ "default": "⨁ ",
+ "type": "string"
+ },
+ "style": {
+ "default": "bold #75AADB",
+ "type": "string"
+ },
+ "disabled": {
+ "default": false,
+ "type": "boolean"
+ },
+ "detect_extensions": {
+ "default": [
+ "qmd"
+ ],
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "detect_files": {
+ "default": [
+ "_quarto.yml"
+ ],
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "detect_folders": {
+ "default": [],
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ },
+ "additionalProperties": false
+ },
"RakuConfig": {
"type": "object",
"properties": {