Moltivie / the-t3-stack

Found single char variable name JS-C1002
Anti-pattern
Minor
2 years ago2 years old
Variable name is too small.
 3
 4import { type Context } from "./context";
 5
 6const t = initTRPC.context<Context>().create({ 7  transformer: superjson, 8  errorFormatter({ shape }) { 9    return shape;10  },11});12
13export const router = t.router;
14