ejyy/ower-mp/prettier.config.js
2021-11-08 14:45:41 +08:00

33 lines
647 B
TypeScript

module.exports = {
printWidth: 120,
tabWidth: 4,
useTabs: false,
singleQuote: true,
semi: true,
trailingComma: 'none',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'avoid',
htmlWhitespaceSensitivity: 'ignore',
overrides: [
{
files: '*.wxml',
options: {
parser: 'html'
}
},
{
files: '*.wxss',
options: {
parser: 'css'
}
},
{
files: '*.wxs',
options: {
'parser': 'babel'
}
}
]
};