Skip to content

Commit e6d9039

Browse files
authored
Fix typo'd Exclude repo-wide (#71)
1 parent a407792 commit e6d9039

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

packages/backend/src/schemas/v2.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ export interface GitHubConfig {
4646
repos?: string[];
4747
exclude?: {
4848
/**
49-
* Exlcude forked repositories from syncing.
49+
* Exclude forked repositories from syncing.
5050
*/
5151
forks?: boolean;
5252
/**
53-
* Exlcude archived repositories from syncing.
53+
* Exclude archived repositories from syncing.
5454
*/
5555
archived?: boolean;
5656
/**
@@ -107,11 +107,11 @@ export interface GitLabConfig {
107107
projects?: string[];
108108
exclude?: {
109109
/**
110-
* Exlcude forked projects from syncing.
110+
* Exclude forked projects from syncing.
111111
*/
112112
forks?: boolean;
113113
/**
114-
* Exlcude archived projects from syncing.
114+
* Exclude archived projects from syncing.
115115
*/
116116
archived?: boolean;
117117
/**
@@ -155,11 +155,11 @@ export interface GiteaConfig {
155155
users?: string[];
156156
exclude?: {
157157
/**
158-
* Exlcude forked repositories from syncing.
158+
* Exclude forked repositories from syncing.
159159
*/
160160
forks?: boolean;
161161
/**
162-
* Exlcude archived repositories from syncing.
162+
* Exclude archived repositories from syncing.
163163
*/
164164
archived?: boolean;
165165
/**

schemas/v2/index.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,12 @@
136136
"forks": {
137137
"type": "boolean",
138138
"default": false,
139-
"description": "Exlcude forked repositories from syncing."
139+
"description": "Exclude forked repositories from syncing."
140140
},
141141
"archived": {
142142
"type": "boolean",
143143
"default": false,
144-
"description": "Exlcude archived repositories from syncing."
144+
"description": "Exclude archived repositories from syncing."
145145
},
146146
"repos": {
147147
"type": "array",
@@ -227,12 +227,12 @@
227227
"forks": {
228228
"type": "boolean",
229229
"default": false,
230-
"description": "Exlcude forked projects from syncing."
230+
"description": "Exclude forked projects from syncing."
231231
},
232232
"archived": {
233233
"type": "boolean",
234234
"default": false,
235-
"description": "Exlcude archived projects from syncing."
235+
"description": "Exclude archived projects from syncing."
236236
},
237237
"projects": {
238238
"type": "array",
@@ -324,12 +324,12 @@
324324
"forks": {
325325
"type": "boolean",
326326
"default": false,
327-
"description": "Exlcude forked repositories from syncing."
327+
"description": "Exclude forked repositories from syncing."
328328
},
329329
"archived": {
330330
"type": "boolean",
331331
"default": false,
332-
"description": "Exlcude archived repositories from syncing."
332+
"description": "Exclude archived repositories from syncing."
333333
},
334334
"repos": {
335335
"type": "array",

0 commit comments

Comments
 (0)