mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
],
|
|
printWidth: 100,
|
|
singleQuote: true,
|
|
};
|