Remco Haszing

Results 446 comments of Remco Haszing

I see why this happens and have a rough idea how to fix it. It has to do with the scope analysis of virtual files in https://github.com/mdx-js/mdx-analyzer/blob/main/packages/language-service/lib/virtual-code.js. We will probably...

Note that `props` is not available in `mdxjsEsm` nodes. It’s only allowed in MDX content. But I do agree with @JounQin’s solution, at least as temporary solution. It’s better to...

```mdx # Hello export function whatever() { // This expression is unused 1; } ```

It doesn’t work for me. I tried to use in in GitLab CI. The job output can be found [here](https://gitlab.com/appsemble/appsemble/-/jobs/479435804). All details can be found from there, but I’ll summarize...

It appears to work for `helm install --dependency-update`, but not for `helm dependency build`. ```sh $ helm version version.BuildInfo{Version:"v3.1.2", GitCommit:"d878d4d45863e42fd5cff6743294a11d28a9abce", GitTreeState:"clean", GoVersion:"go1.13.8"} $ helm create foo Creating foo $ grep...

I didn’t test the latest master, since I don’t have a go development setup. Looking from the logs, you posted, the issue appears to be resolved. :smiley:

I think `acorn-loose` is a good candidate, although currently it doesn’t work as a drop-in replacement, because it doesn’t implement `parseExpressionAt`. ```js import {Parser} from 'acorn' import {LooseParser} from 'acorn-loose'...

I have some vague ideas, but none of these are ideal. Firstly, let’s determine what it means for IntelliSense to apply a transformer. Transformers can: 1. Inject module level exports,...

Hi Erin! Thanks for thinking with us on a solution. I like your idea, but sadly it won’t work. Firstly, `declare global` has special meaning in TypeScript. We can use...

Given the following config: ```jsonc { "mdx": { "plugins": [ ["remark-mdx-frontmatter", { "name": "someName" }] ] } } ``` and the following input: ```mdx --- Hello: frontmatter --- ``` It...