1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +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

@@ -8,7 +8,7 @@ export abstract class PasswordGenerationServiceAbstraction {
generatePassphrase: (options: PasswordGeneratorOptions) => Promise<string>;
getOptions: () => Promise<[PasswordGeneratorOptions, PasswordGeneratorPolicyOptions]>;
enforcePasswordGeneratorPoliciesOnOptions: (
options: PasswordGeneratorOptions
options: PasswordGeneratorOptions,
) => Promise<[PasswordGeneratorOptions, PasswordGeneratorPolicyOptions]>;
getPasswordGeneratorPolicyOptions: () => Promise<PasswordGeneratorPolicyOptions>;
saveOptions: (options: PasswordGeneratorOptions) => Promise<void>;
@@ -17,6 +17,6 @@ export abstract class PasswordGenerationServiceAbstraction {
clear: (userId?: string) => Promise<void>;
normalizeOptions: (
options: PasswordGeneratorOptions,
enforcedPolicyOptions: PasswordGeneratorPolicyOptions
enforcedPolicyOptions: PasswordGeneratorPolicyOptions,
) => void;
}

View File

@@ -34,7 +34,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr
constructor(
private cryptoService: CryptoService,
private policyService: PolicyService,
private stateService: StateService
private stateService: StateService,
) {}
async generatePassword(options: PasswordGeneratorOptions): Promise<string> {
@@ -190,7 +190,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr
}
async enforcePasswordGeneratorPoliciesOnOptions(
options: PasswordGeneratorOptions
options: PasswordGeneratorOptions,
): Promise<[PasswordGeneratorOptions, PasswordGeneratorPolicyOptions]> {
let enforcedPolicyOptions = await this.getPasswordGeneratorPolicyOptions();
if (enforcedPolicyOptions != null) {
@@ -387,7 +387,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr
normalizeOptions(
options: PasswordGeneratorOptions,
enforcedPolicyOptions: PasswordGeneratorPolicyOptions
enforcedPolicyOptions: PasswordGeneratorPolicyOptions,
) {
options.minLowercase = 0;
options.minUppercase = 0;
@@ -461,7 +461,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr
}
private async encryptHistory(
history: GeneratedPasswordHistory[]
history: GeneratedPasswordHistory[],
): Promise<GeneratedPasswordHistory[]> {
if (history == null || history.length === 0) {
return Promise.resolve([]);
@@ -476,7 +476,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr
}
private async decryptHistory(
history: GeneratedPasswordHistory[]
history: GeneratedPasswordHistory[],
): Promise<GeneratedPasswordHistory[]> {
if (history == null || history.length === 0) {
return Promise.resolve([]);

View File

@@ -33,7 +33,7 @@ export class UsernameGenerationService implements UsernameGenerationServiceAbstr
constructor(
private cryptoService: CryptoService,
private stateService: StateService,
private apiService: ApiService
private apiService: ApiService,
) {}
generateUsername(options: UsernameGeneratorOptions): Promise<string> {