Linting, prettier and postcss setup
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 18s
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 18s
This commit is contained in:
23
.prettierrc.js
Normal file
23
.prettierrc.js
Normal 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
|
||||
}
|
||||
}
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user