vite-vue3-lowcode/prettier.config.js

11 lines
215 B
JavaScript
Raw Normal View History

2021-05-04 21:54:05 +08:00
module.exports = {
printWidth: 100,
2022-01-01 01:31:04 +08:00
semi: true,
vueIndentScriptAndStyle: true,
2021-05-04 21:54:05 +08:00
singleQuote: true,
2022-01-01 01:31:04 +08:00
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
};