chore: Initial commit.
This commit is contained in:
commit
0219b23c4e
84 changed files with 15995 additions and 0 deletions
26
prettier.config.mjs
Normal file
26
prettier.config.mjs
Normal file
|
@ -0,0 +1,26 @@
|
|||
/** @type {import("prettier").Config} */
|
||||
export default {
|
||||
trailingComma: 'es5',
|
||||
semi: false,
|
||||
singleQuote: true,
|
||||
astroAllowShorthand: true,
|
||||
bracketSameLine: true,
|
||||
singleAttributePerLine: true,
|
||||
overrides: [
|
||||
{
|
||||
files: ['*.astro'],
|
||||
options: {
|
||||
parser: 'astro',
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['*.svg'],
|
||||
options: {
|
||||
parser: 'html',
|
||||
},
|
||||
},
|
||||
],
|
||||
proseWrap: 'always',
|
||||
tailwindFunctions: ['tw'],
|
||||
plugins: ['prettier-plugin-astro', 'prettier-plugin-tailwindcss'],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue