Bill Cauchois

Results 9 comments of Bill Cauchois

Hey, just to update on this, I ended up ripping out Salat and porting the twofishes index builder code to use Rogue (kind of the nuclear option, but also ended...

Thanks for the response @zelliott! I think you're missing two cases where exporting a type name can undesirably increase the contract surface area of a library. 1. Type renames. In...

Hey Zack! To answer your questions 1/2, I am looking to disable this behavior on a per-project basis (per-declaration would work, but per-project is what would satisfy my use case)....

> If we did add a project-wide configuration to disable the `ae-forgotten-export` warning and allow forgotten exports to be included in the API report and API doc model files, are...

Any update on support for these endpoints? 🙏

> @sinbargit you can now disable source map with `ts-jest` **27.0.0-next.12** and `jest` **27.0.0-next.9** by setting `sourceMap: false` in your test tsconfig. @ahnpnl I tried this with jest 27.0.0-next.9 and...

``` wcauchois@fenris:~/repo (master)$ time git status --porcelain 2>/dev/null real 0m0.338s user 0m0.198s sys 0m0.139s ```

btw, i ended up alleviating this for myself by just removing the dirty checking portion of the prompt. that is, replace ``` PROMPT_COMMAND="find_git_branch; find_git_dirty; $PROMPT_COMMAND" ``` with ``` PROMPT_COMMAND="find_git_branch; $PROMPT_COMMAND"...

I want to chime in here that it's very inconvenient that every type is nullable (e.g. `id` on invoice - [link](https://github.com/recurly/recurly-client-node/blob/7c8a811d89cfa1d0822a2a91f535fe343b093138/lib/recurly.d.ts#L1083)). Could the developers please fix this to reflect what...