ikokostya

Results 7 comments of ikokostya

@zaggino What do you think?

[no-duplicate-switch-case](https://palantir.github.io/tslint/rules/no-duplicate-switch-case/) rule is supported in [tslint 5.8.0](https://github.com/palantir/tslint/blob/master/CHANGELOG.md#tada-features).

Just to be clear, `z-schema` (JSON schema validation library) doesn't check this too: ```js const ZSchema = require('z-schema'); const validator = new ZSchema(); const schema = { type: 'object', properties:...

Related issue https://github.com/nodejs/node-addon-examples/issues/171

@mhdawson Many examples in this repository repeat the following code snippet: ```cpp Napi::FunctionReference* constructor = new Napi::FunctionReference(); *constructor = Napi::Persistent(func); env.SetInstanceData(constructor); ``` So only one data item can be associated...

Hi. Could you provide more information about failed installation (yarn logs, content of `package.json` and `yarn.lock`, etc)? > This happens only with fs-ext (and never with some other binary extension...

Also possible to use function overloading to solve the problem above with inference of type parameter `V`: ```python @overload def progressbar(iterable: Optional[Iterable[V]], ...) -> ProgressBar[V]: ... @overload def progressbar(length: int,...