Remco Haszing
Remco Haszing
See https://github.com/remcohaszing/monaco-yaml/releases/tag/v5.0.0
That’s fair. I welcome a PR to add a new method `getOptions: () => MonacoYamlOptions`.
`react-markdown@7` was released in 2021. This was 4 years ago. We’re already at 10 now. A lot has improved, also in React and TypeScript. Why are you using such old...
Upgrade to a newer version. If you must use such an old version, enable `skipLibCheck`.
I would love to support Tailwind v4, but it’s low on my priority list. Once Tailwind v4 is stable, I’ll gladly accept a PR.
Without it the frontmatter content isn’t highlighted. I don’t understand why. I did simplify it a bit now.
I tried to follow https://github.com/vscode-icons/vscode-icons/wiki/Contributing, but using InkScape since I don’t have Illustrator.
> I have just added an extra outline to the supabase logo to make it distinguishable when rendered I see. I like it :)
You’re right, it even has the same name as I came up with. I can’t believe I didn’t find this earlier. :sweat_smile: I don’t know if `eslint-plugin-unicorn` wants to duplicate...
This rule would also play nice with [`no-return-await`](https://eslint.org/docs/rules/no-return-await). Currently an intermediate variable could be used to circumvent this rule. ```js async function foo() { const value = await bar(); return...