Devin Rhode
Devin Rhode
Anything ignored by .gitignore, which we want prettier for format, could be negated inside of .prettierignore like so: ``` !public/*.js ```
@fisker we need something that _just works_, i.e. [one of remcohaszing's ideas](#issuecomment-1108274919) Otherwise we'll end up using a fork.... no fun
I don't really like the trend of dumping tons of config into package.json, but I can appreciate why it exists: adding 8 different config files to the root of a...
Also, first person to re-write cosmiconfig in rust or zig gets a gold star
I'm not sure what you mean > Double casing a wrong parameter I assume this is the parameter you are referring to: ```ts const level = 'debug' const stream =...
It seems some older version of pino supported loggerOptions.stream
Of the two ideas I Suggested both are pretty hard breaking changes, likely calling for a major version bump. I don't think it'd be very hard to make the change,...
I don't know exactly why TS isn't creating a type error in my original example. I'm guessing because LoggerOptions type is too loose.. so if it's possible to more directly...
when you investigate using ts typings in flow, you learn that this won't really work as expected, because ts is not sound, there is not enough information in ts types...
Example showing why this is useful: ``` export type SafeEnv = { /** It's the FOO thing you know? */ FOO: string /** It's the BAR thing you know? */...