monorepo/packages/core/prettier.mjs

11 lines
233 B
JavaScript
Raw Normal View History

2025-02-09 10:39:10 +08:00
const config = {
2024-09-28 14:58:45 +08:00
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
proseWrap: 'never',
endOfLine: 'auto',
semi: true,
tabWidth: 4,
htmlWhitespaceSensitivity: 'strict',
2024-06-25 21:59:50 +08:00
};
2025-02-09 10:39:10 +08:00
export default config;