search_tools_web/prettier.config.js

12 lines
231 B
JavaScript
Raw Normal View History

2025-04-21 18:37:45 +08:00
module.exports = {
printWidth: 120,
tabWidth: 4,
semi: false,
vueIndentScriptAndStyle: false,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
}