1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

[deps] Autofill: Update prettier to v3 (#7014)

* [deps] Autofill: Update prettier to v3

* prettier formatting updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
renovate[bot]
2023-11-29 16:15:20 -05:00
committed by GitHub
parent 4ff5f38e89
commit 28de9439be
1145 changed files with 5898 additions and 5612 deletions

View File

@@ -19,7 +19,7 @@ export class ExportCommand {
constructor(
private exportService: VaultExportServiceAbstraction,
private policyService: PolicyService,
private eventCollectionService: EventCollectionService
private eventCollectionService: EventCollectionService,
) {}
async run(options: program.OptionValues): Promise<Response> {
@@ -28,7 +28,7 @@ export class ExportCommand {
(await this.policyService.policyAppliesToUser(PolicyType.DisablePersonalVaultExport))
) {
return Response.badRequest(
"One or more organization policies prevents you from exporting your personal vault."
"One or more organization policies prevents you from exporting your personal vault.",
);
}
@@ -36,8 +36,8 @@ export class ExportCommand {
if (!this.isSupportedExportFormat(format)) {
return Response.badRequest(
`'${format}' is not a supported export format. Supported formats: ${EXPORT_FORMATS.join(
", "
)}.`
", ",
)}.`,
);
}
@@ -76,7 +76,7 @@ export class ExportCommand {
private async saveFile(
exportContent: string,
options: program.OptionValues,
format: ExportFormat
format: ExportFormat,
): Promise<Response> {
try {
const fileName = this.getFileName(format, options.organizationid != null ? "org" : null);