bonus-ui/prettier.config.js

12 lines
249 B
JavaScript
Raw Normal View History

2024-12-30 18:07:53 +08:00
module.exports = {
2025-03-12 18:12:27 +08:00
printWidth: 120,
2024-12-30 18:07:53 +08:00
tabWidth: 4,
semi: false,
vueIndentScriptAndStyle: false,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
}