CEES-H5-New/prettier.config.js

19 lines
319 B
JavaScript
Raw Normal View History

2025-03-19 13:15:34 +08:00
module.exports = {
printWidth: 140,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
overrides: [
{
files: '.*rc',
options: {
parser: 'json',
},
},
],
};