Linting, prettier and postcss setup
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 18s

This commit is contained in:
2025-09-02 12:02:35 +02:00
parent 422e22867f
commit ca1c6b9018
11 changed files with 8395 additions and 20 deletions

23
.prettierrc.js Normal file
View File

@@ -0,0 +1,23 @@
export default {
semi: false,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
plugins: ['prettier-plugin-astro'],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro',
},
},
{
files: '*.mdx',
options: {
parser: 'mdx',
tabWidth: 4
}
}
],
}