Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Sep 9, 2024
1 parent 5cedf94 commit 2fa261c
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 87 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ // CSpell:ignore dbaeumer davidanson firsttris gruntfuggly orta usernamehw azuretools errorlens
{ // CSpell:ignore dbaeumer davidanson firsttris gruntfuggly orta usernamehw azuretools errorlens bierner
"name": "Relabeler Dev Container", // A development container for Node.js and TypeScript projects with GitVersion support.
"dockerFile": "Dockerfile",
"build": {
Expand Down
172 changes: 86 additions & 86 deletions src/schemas/relabeler-config.schema.ts
Original file line number Diff line number Diff line change
@@ -1,134 +1,134 @@
export const schema = {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"pulls": {
"type": "object",
"properties": {
"labels": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "object",
"properties": {
"name": {
"type": "string"
'$schema': 'http://json-schema.org/draft-07/schema#',
'type': 'object',
'properties': {
'pulls': {
'type': 'object',
'properties': {
'labels': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'label': {
'type': 'object',
'properties': {
'name': {
'type': 'string'
},
"add": {
"type": "array",
"items": {
"type": "object",
"properties": {
"when": {
"type": "object",
"properties": {
"statuses": {
"type": "object"
'add': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'when': {
'type': 'object',
'properties': {
'statuses': {
'type': 'object'
},
"notLabeled": {
"type": "array",
"items": {
"type": "string"
'notLabeled': {
'type': 'array',
'items': {
'type': 'string'
}
},
"canBeMerged": {
"type": "boolean"
'canBeMerged': {
'type': 'boolean'
},
"reviewRequestChange": {
"type": "boolean"
'reviewRequestChange': {
'type': 'boolean'
},
"labeled": {
"type": "array",
"items": {
"type": "string"
'labeled': {
'type': 'array',
'items': {
'type': 'string'
}
},
"reviewResponseToRequestChange": {
"type": "boolean"
'reviewResponseToRequestChange': {
'type': 'boolean'
},
"onPush": {
"type": "boolean"
'onPush': {
'type': 'boolean'
},
"reviewApproved": {
"type": "boolean"
'reviewApproved': {
'type': 'boolean'
}
}
}
},
"required": [
"when"
'required': [
'when'
]
}
},
"remove": {
"type": "array",
"items": {
"type": "object",
"properties": {
"when": {
"type": "object",
"properties": {
"statuses": {
"type": "object"
'remove': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'when': {
'type': 'object',
'properties': {
'statuses': {
'type': 'object'
},
"notLabeled": {
"type": "array",
"items": {
"type": "string"
'notLabeled': {
'type': 'array',
'items': {
'type': 'string'
}
},
"canBeMerged": {
"type": "boolean"
'canBeMerged': {
'type': 'boolean'
},
"reviewRequestChange": {
"type": "boolean"
'reviewRequestChange': {
'type': 'boolean'
},
"labeled": {
"type": "array",
"items": {
"type": "string"
'labeled': {
'type': 'array',
'items': {
'type': 'string'
}
},
"reviewResponseToRequestChange": {
"type": "boolean"
'reviewResponseToRequestChange': {
'type': 'boolean'
},
"onPush": {
"type": "boolean"
'onPush': {
'type': 'boolean'
},
"reviewApproved": {
"type": "boolean"
'reviewApproved': {
'type': 'boolean'
}
}
}
},
"required": [
"when"
'required': [
'when'
]
}
}
},
"required": [
"name",
"add",
"remove"
'required': [
'name',
'add',
'remove'
]
}
},
"required": [
"label"
'required': [
'label'
]
}
}
},
"required": [
"labels"
'required': [
'labels'
]
}
},
"required": [
"pulls"
'required': [
'pulls'
]
} as const;

Expand Down

0 comments on commit 2fa261c

Please sign in to comment.