Files
webawesome/prettier.config.js

22 lines
506 B
JavaScript
Raw Normal View History

2023-10-12 15:03:38 -04:00
/** @type {import("prettier").Config} */
const config = {
2020-07-15 17:30:37 -04:00
arrowParens: 'avoid',
bracketSpacing: true,
htmlWhitespaceSensitivity: 'css',
insertPragma: false,
2021-12-31 17:39:16 -08:00
bracketSameLine: false,
2020-07-15 17:30:37 -04:00
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'],
2020-07-15 17:30:37 -04:00
};
2023-10-12 15:03:38 -04:00
export default config;