mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
d081ecf5b3
* tooling: prettier for astro and tailwind Prettier configuration for Astro component's formatting and Tailwind CSS class sorting. * fix: single quote for props
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'),
|
|
],
|
|
};
|