mirror of
https://github.com/saicaca/fuwari.git
synced 2026-01-11 14:52:52 +01:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
],
|
|
}; |