Oleg Vaskevich

Results 19 comments of Oleg Vaskevich

Here's a sample screenshot: ![screenshot](http://i.imgur.com/aORrPAm.png) You can get this by specifying the following in the configuration file: ``` $Opt["summaryTemplate"] =

BUMP - thoughts?

A few other improvement ideas: - Set `addMatchAll` to be `false` by default, otherwise tsconfig-paths will try to resolve even files within `node_modules`, which should be unnecessary - By default...

A workaround here is to directly pass any custom params into the authorization URL. These will be merged into the authorization URL this package generates: https://github.com/jaredhanson/passport-oauth2/blob/a02839afb8d15f7d283ae09167973e4d22e8faf8/lib/strategy.js#L229-L230

Looks like it is dead. See http://web.archive.org/web/20190505234856/http://www.lgtm.in/

Sure! I'm not familiar with this codebase, but one thing I noticed is the call to `callErrorFromStatus`: https://github.com/grpc/grpc-node/blob/bf2e5cb1dd25e43f53605d8de2b8e082072ec23e/packages/grpc-js/src/call.ts#L79-L82 This function is creating the `Error` inline, which means it's the stack...

Another thing - would it be possible to refer to an existing TS enum member? For instance, if I have an enum defined: ``` MyEnum: type: string enum: [one, two,...

Well, I found my own thread here again. I was able to work around this by making use of `tsType` to override the type to be `MyEnum.Two`, for instance.

Yup! I'm going to take a stab at it -- just wanted to open an issue, first.

Ok, I gave it a shot: https://github.com/census-instrumentation/opencensus-node/pull/793.