monorepo/packages/core/prettier.js

13 lines
245 B
JavaScript
Raw Normal View History

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