35 lines
731 B
JavaScript
35 lines
731 B
JavaScript
/** @type {import("prettier").Config} */
|
|
|
|
const config = {
|
|
arrowParens: 'always',
|
|
bracketSameLine: false,
|
|
bracketSpacing: true,
|
|
embeddedLanguageFormatting: 'auto',
|
|
endOfLine: 'lf',
|
|
htmlWhitespaceSensitivity: 'css',
|
|
insertPragma: false,
|
|
jsxSingleQuote: true,
|
|
printWidth: 80,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'as-needed',
|
|
requirePragma: false,
|
|
semi: false,
|
|
singleAttributePerLine: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'none',
|
|
useTabs: true,
|
|
vueIndentScriptAndStyle: false,
|
|
plugins: ['prettier-plugin-organize-imports', 'prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
export default config
|