element-plus/.prettierrc.js
2021-07-14 09:27:52 +08:00

17 lines
241 B
JavaScript

module.exports = {
semi: false,
trailingComma: 'all',
singleQuote: true,
printWidth: 80,
tabWidth: 2,
endOfLine: 'auto',
overrides: [
{
files: '*.scss',
options: {
parser: 'scss',
},
},
],
}