Tim De Pauw

Results 85 comments of Tim De Pauw

From instrumenting the code a bit, I can see that `eslint --fix` explicitly decides to indent a regular string: ```js { token: Token { type: 'String', value: "'I want this...

So I went further down the rabbit hole and found out that it _is_ an option specific to Standard that's triggering the issue: https://github.com/standard/eslint-config-standard/blob/bcd019906cd379be04ef8e6347e108bad4fc448d/.eslintrc.json#L77 Ignoring `TemplateLiteral *` excludes the template...

I think you should be able to change the stroke and individual fill colors. Lowering the opacity doesn't seem like the best idea since it might reveal overlapping strokes. HSL...

I've added experimental support for this in v0.18.1-alpha.0. It works by adding a new `ghosts` parameter, because that's what appeared to be the internal name in the `TestScheduler` code. Please...

Cool! I'll probably release the stable version later today. The API will be identical. Incidentally, you don't need the legacy `swirly-*` packages. I migrated everything to `@swirly/*` a while ago....

You can now upgrade to 0.18.1. I've also taken the liberty of adding your diagram to the repo as an example. 🙂

@nevkontakte If I wanted to try this out in my project, how would I build the `gopherjs` binary from your fork? I get: ``` ❯ go install github.com/nevkontakte/gopherjs@d5b4c07 go: downloading...

I see, thanks! It did seem a bit early, but you never know. 😁 In case you're interested in my use case: Details I'm trying to compile the [Prometheus PromQL...

Unfortunately, that one fails because it doesn't have `runtime/metrics`. But we're on the same page. 😁

Just documenting my ugly workaround for posterity: ```js // .eslintrc.cjs const standard = require('eslint-config-standard') const indent = [...standard.rules.indent] indent[2] = { ...indent[2], ignoredNodes: indent[2].ignoredNodes.filter( (expr) => !expr.startsWith('Template') ) } module.exports...