Fix typo'd Exclude repo-wide (#71)

This commit is contained in:
Chris Roberts 2024-11-14 17:03:34 -06:00 committed by GitHub
parent a407792212
commit e6d90398e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View file

@ -46,11 +46,11 @@ export interface GitHubConfig {
repos?: string[]; repos?: string[];
exclude?: { exclude?: {
/** /**
* Exlcude forked repositories from syncing. * Exclude forked repositories from syncing.
*/ */
forks?: boolean; forks?: boolean;
/** /**
* Exlcude archived repositories from syncing. * Exclude archived repositories from syncing.
*/ */
archived?: boolean; archived?: boolean;
/** /**
@ -107,11 +107,11 @@ export interface GitLabConfig {
projects?: string[]; projects?: string[];
exclude?: { exclude?: {
/** /**
* Exlcude forked projects from syncing. * Exclude forked projects from syncing.
*/ */
forks?: boolean; forks?: boolean;
/** /**
* Exlcude archived projects from syncing. * Exclude archived projects from syncing.
*/ */
archived?: boolean; archived?: boolean;
/** /**
@ -155,11 +155,11 @@ export interface GiteaConfig {
users?: string[]; users?: string[];
exclude?: { exclude?: {
/** /**
* Exlcude forked repositories from syncing. * Exclude forked repositories from syncing.
*/ */
forks?: boolean; forks?: boolean;
/** /**
* Exlcude archived repositories from syncing. * Exclude archived repositories from syncing.
*/ */
archived?: boolean; archived?: boolean;
/** /**

View file

@ -136,12 +136,12 @@
"forks": { "forks": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Exlcude forked repositories from syncing." "description": "Exclude forked repositories from syncing."
}, },
"archived": { "archived": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Exlcude archived repositories from syncing." "description": "Exclude archived repositories from syncing."
}, },
"repos": { "repos": {
"type": "array", "type": "array",
@ -227,12 +227,12 @@
"forks": { "forks": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Exlcude forked projects from syncing." "description": "Exclude forked projects from syncing."
}, },
"archived": { "archived": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Exlcude archived projects from syncing." "description": "Exclude archived projects from syncing."
}, },
"projects": { "projects": {
"type": "array", "type": "array",
@ -324,12 +324,12 @@
"forks": { "forks": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Exlcude forked repositories from syncing." "description": "Exclude forked repositories from syncing."
}, },
"archived": { "archived": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Exlcude archived repositories from syncing." "description": "Exclude archived repositories from syncing."
}, },
"repos": { "repos": {
"type": "array", "type": "array",