localhost_oa_front/prettier.config.js

14 lines
260 B
JavaScript
Raw Normal View History

2024-02-27 17:22:27 +08:00
/**
* @type {import('prettier').Config}
*/
module.exports = {
printWidth: 100,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
};