add external content

This commit is contained in:
Alexander Navarro 2023-06-26 17:27:50 -04:00
parent e515ed76a2
commit 0d876f50a9
8 changed files with 94 additions and 6 deletions

16
.prettierrc.cjs Normal file
View file

@ -0,0 +1,16 @@
module.exports = {
tabWidth: 2,
singleQuote: true,
endOfLine: 'auto',
'eol-last': 2,
trailingComma: 'all',
plugins: [require.resolve("prettier-plugin-astro")],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};