misc: addressed lint issues

This commit is contained in:
Sheen Capadngan
2024-11-05 22:22:41 +08:00
parent 90f85152bc
commit 77af640c4c
2 changed files with 2 additions and 2 deletions

View File

@@ -72,5 +72,5 @@ export async function down(knex: Knex): Promise<void> {
}
}
const config = {transaction: false};
const config = { transaction: false };
export { config };

View File

@@ -2540,7 +2540,7 @@ const syncSecretsAzureDevops = async ({
const { groupId, groupName } = await getEnvGroupId(integration.app, integration.appId, integration.environment.name);
const variables: Record<string, { value: string, isSecret: boolean }> = {};
const variables: Record<string, { value: string; isSecret: boolean }> = {};
for (const key of Object.keys(secrets)) {
variables[key] = { value: secrets[key].value, isSecret: true };
}