Files
webawesome/prettier.config.js

21 lines
430 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,
trailingComma: 'none',
useTabs: false
};
2023-10-12 15:03:38 -04:00
export default config;