diff --git a/.prettierignore b/.prettierignore index 9c2757b..add50ff 100644 --- a/.prettierignore +++ b/.prettierignore @@ -11,6 +11,7 @@ !.prettierrc !eslint.config.js !README.md +!.vscode # Ignore MDX files *.mdx \ No newline at end of file diff --git a/.vscode/astro-paper.code-snippets b/.vscode/astro-paper.code-snippets index 869c4cb..c8721b1 100644 --- a/.vscode/astro-paper.code-snippets +++ b/.vscode/astro-paper.code-snippets @@ -15,7 +15,7 @@ "description: $8", "---", ], - "description": "Adds the frontmatter block for the AstroPaper Blog post" + "description": "Adds the frontmatter block for the AstroPaper Blog post", }, "Blog Template": { "scope": "markdown", @@ -29,6 +29,6 @@ "", "## ${3: heading 1}", ], - "description": "Adds the template for the AstroPaper Blog post. You will need to trigger the snippet modal on the 'frontmatter' line to insert the other snipper." - } + "description": "Adds the template for the AstroPaper Blog post. You will need to trigger the snippet modal on the 'frontmatter' line to insert the other snipper.", + }, } diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 22a1505..a53b2c7 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,4 +1,8 @@ { - "recommendations": ["astro-build.astro-vscode"], - "unwantedRecommendations": [] + "recommendations": [ + "astro-build.astro-vscode", + "esbenp.prettier-vscode", + "bradlc.vscode-tailwindcss", + "dbaeumer.vscode-eslint" + ] }