Skip to content

Commit

Permalink
refactor: apply biome warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Jan 20, 2024
1 parent a05de90 commit 303b036
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nestjs-firebase/src/firebase.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export type FirebaseModuleOptions = {
export type FirebaseModuleAsyncOptions = {
useClass?: Type<FirebaseModuleOptionsFactory>;
useFactory?: (
...args: any[]
...args: unknown[]
) => Promise<FirebaseModuleOptions> | FirebaseModuleOptions;
inject?: any[];
inject?: unknown[];
useExisting?: Type<FirebaseModuleOptionsFactory>;
} & Pick<ModuleMetadata, "imports">;

Expand Down
1 change: 1 addition & 0 deletions packages/nestjs-slack-webhook/src/slackModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { SlackCoreModule } from "./slackCoreModule";
import { SlackAsyncOptions, SlackOptions } from "./slackOptions";

@Module({})
// biome-ignore lint/complexity/noStaticOnlyClass: <explanation>
export class SlackModule {
public static forRoot(options: SlackOptions): DynamicModule {
return {
Expand Down

0 comments on commit 303b036

Please sign in to comment.