weareinreach / InReach

Found single char variable name JS-C1002
Anti-pattern
Minor
9 days agoa year old
Variable name is too small
11	hasPerm?: Permission | Permission[]
12}
13
14export const t = initTRPC15	.context<Context>()16	.meta<Meta>()17	.create({18		transformer,19		errorFormatter({ shape, error }) {20			return {21				...shape,22				data: {23					...shape.data,24					cause: error.cause instanceof ZodError ? error.cause.flatten() : error.cause,25				},26			}27		},28	})