You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schemas/IConfig.json
+28-2
Original file line number
Diff line number
Diff line change
@@ -33,8 +33,21 @@
33
33
"footerFileUrl": {
34
34
"description": "File that will be added as the issue footer.\nExample: \"https://raw.githubusercontent.com/legomushroom/codespaces-board/main/sprints/sprint%2012/footer.md\"",
35
35
"type": "string"
36
+
},
37
+
"isReplaceProjectMarkers": {
38
+
"description": "If replace the <!-- codespaces-board:project_{id}:start -->\nmarkers instead of replacing entire issue body.\n\ndefault: false.",
39
+
"type": "boolean"
40
+
},
41
+
"$schema": {
42
+
"description": "Used by `vscode` in JSON files.",
43
+
"type": "string"
36
44
}
37
45
},
46
+
"additionalProperties": false,
47
+
"required": [
48
+
"boardIssue",
49
+
"repos"
50
+
],
38
51
"definitions": {
39
52
"IRepoSourceConfig": {
40
53
"type": "object",
@@ -61,7 +74,12 @@
61
74
]
62
75
}
63
76
}
64
-
}
77
+
},
78
+
"additionalProperties": false,
79
+
"required": [
80
+
"owner",
81
+
"repo"
82
+
]
65
83
},
66
84
"IProject": {
67
85
"type": "object",
@@ -76,8 +94,16 @@
76
94
"items": {
77
95
"type": "string"
78
96
}
97
+
},
98
+
"isCheckListItems": {
99
+
"description": "If to render issues as check list using the [x] markers.\n\ndefault: false",
0 commit comments