Files
geg-gas-web/prettier.config.js

11 lines
231 B
JavaScript
Raw Normal View History

2024-02-05 09:15:37 +08:00
module.exports = {
printWidth: 250,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'none',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto'
2024-02-05 09:15:37 +08:00
};