mirror of
https://github.com/KazooTTT/kazoottt-blog.git
synced 2025-06-16 07:21:20 +08:00
20 lines
441 B
JavaScript
20 lines
441 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
// i am just using the standard config, change if you need something else
|
|
...require('prettier-config-standard'),
|
|
pluginSearchDirs: [__dirname],
|
|
plugins: ['prettier-plugin-astro', 'prettier-plugin-tailwindcss'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro'
|
|
}
|
|
}
|
|
],
|
|
useTabs: true,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
printWidth: 100
|
|
}
|