wms-antdvue/prettier.config.js

10 lines
214 B
JavaScript
Raw Normal View History

2024-11-07 16:33:03 +08:00
module.exports = {
printWidth: 100,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
};