mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-11 20:08:56 +00:00
22 lines
506 B
JavaScript
22 lines
506 B
JavaScript
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
htmlWhitespaceSensitivity: 'css',
|
|
insertPragma: false,
|
|
bracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
printWidth: 120,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'as-needed',
|
|
requirePragma: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
organizeImportsSkipDestructiveCodeActions: true,
|
|
plugins: ['prettier-plugin-organize-imports'],
|
|
};
|
|
|
|
export default config;
|