mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 14:18:17 +01:00
19 lines
330 B
JavaScript
19 lines
330 B
JavaScript
|
module.exports = {
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
overrides: [
|
||
|
{
|
||
|
files: '*.astro',
|
||
|
options: {
|
||
|
parser: 'astro',
|
||
|
singleQuote: true,
|
||
|
jsxSingleQuote: true,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
plugins: [
|
||
|
require.resolve('prettier-plugin-astro'),
|
||
|
require('prettier-plugin-tailwindcss'),
|
||
|
],
|
||
|
};
|