monorepo/packages/core/prettier.js

13 lines
263 B
JavaScript
Raw Normal View History

2024-06-25 21:59:50 +08:00
/** @format */
module.exports = {
2024-09-28 14:58:45 +08:00
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
proseWrap: 'never',
endOfLine: 'auto',
semi: true,
tabWidth: 4,
vueIndentScriptAndStyle: true,
htmlWhitespaceSensitivity: 'strict',
2024-06-25 21:59:50 +08:00
};