mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
misc: addressed lint issues
This commit is contained in:
@@ -72,5 +72,5 @@ export async function down(knex: Knex): Promise<void> {
|
||||
}
|
||||
}
|
||||
|
||||
const config = {transaction: false};
|
||||
const config = { transaction: false };
|
||||
export { config };
|
||||
|
||||
@@ -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 };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user