From 62b5df194a565b67ee29c3706128bf76ce326d83 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 5 Jul 2024 17:18:56 +0530 Subject: [PATCH] Configure markdownlint for posts --- .vscode/extensions.json | 8 ++++++-- src/content/posts/luau-for-js-devs/index.md | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 57c8cad..f643b2a 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,7 @@ { - "recommendations": ["biomejs.biome", "astro-build.astro-vscode"] -} + "recommendations": [ + "biomejs.biome", + "astro-build.astro-vscode", + "davidanson.markdownlint" + ] +} \ No newline at end of file diff --git a/src/content/posts/luau-for-js-devs/index.md b/src/content/posts/luau-for-js-devs/index.md index d18044d..dcd0e41 100644 --- a/src/content/posts/luau-for-js-devs/index.md +++ b/src/content/posts/luau-for-js-devs/index.md @@ -8,6 +8,8 @@ category: 'Languages' draft: true --- + + Have you ever felt that you live in a loop? That’s how I feel - every time I open tech twitter (no, I am not going to call it X). There are several “programming meme” accounts which seem to regurgitate the same few jokes on a regular basis, to the point that I’m convinced they’re all AI. One of these overused meme formats is related to JavaScript, criticising its poor design choices which lead to various pitfalls a developer can face. I’ve never seen people offer solutions to these, so this blog post attempts to do so with a promising alternative to JavaScript: [Luau]([https://luau-lang.org](https://luau-lang.org)). ## What is Luau?