refactor: Make no-extra-parens rule stricter

This commit is contained in:
Joachim Van Herwegen
2024-03-12 14:44:09 +01:00
parent c4df54dd88
commit 28af181eee
5 changed files with 13 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ describe('A ClientInfoHandler', (): void => {
provider = {
Client: {
find: (id: string): any => (id ? { metadata: jest.fn().mockReturnValue(clientMetadata) } : undefined),
find: (id: string): any => id ? { metadata: jest.fn().mockReturnValue(clientMetadata) } : undefined,
},
} as any;