Emmanuel Pire

Results 12 comments of Emmanuel Pire

The doc seems wrong indeed, it's not `drawJoin: () => false`, it's `drawHorizontalLine: () => false`

Yes! Or manipulate via [jq](https://stedolan.github.io/jq/), that would be amazing.

@ardatan is it worth it for me to make a PR to fix this ?

For me it was this that solved the "module not found" error: https://github.com/adeptoas/sweet-modal-vue/issues/44 + `import SweetModal from 'sweet-modal-vue/src/plugin.js'` (`src/` is missing in the docs)

I was probably unclear: what i meant by "comment" is this: https://plopjs.com/documentation/#comments What we typically do is: ```js plop.setGenerator('service', { actions: [ { base: 'templates/typescript', destination: './{{dashCase name}}', templateFiles: 'templates/typescript/**/*',...

I find myself in a similar situation, but somehow reversed: I'd like for all requests to "passThroughTLS" _unless_ it's a specific domain. I'm using mockttp as a system proxy and...

How about this: ```ts type MockttpHttpsOptions = CAOptions & { // ...existing options tlsOnlyFor?: Array; } ``` This option would be the exact inverse of `tlsPassthrough`, and there would be...

Hmm... I also get `NaN`s but when i feed it >100 rows. The number of parameters in each row doesn't seem to change anything. The number of steps doesn't seem...

You can turn off XML inspections in Settings > Editor > Inspections > uncheck "Unbound XML namespace prefix"