mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 11:18:58 -07:00
17 lines
328 B
JavaScript
17 lines
328 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
arrowParens: 'avoid',
|
|
semi: false,
|
|
singleQuote: true,
|
|
plugins: ['prettier-plugin-astro', 'prettier-plugin-tailwindcss'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
],
|
|
tailwindFunctions: ['tw'],
|
|
}
|