vue-vben-admin/.prettierrc.cjs

20 lines
363 B
JavaScript
Raw Normal View History

2020-09-28 20:19:10 +08:00
module.exports = {
printWidth: 100,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
2021-08-24 22:41:48 +08:00
trailingComma: 'all',
2020-09-28 20:19:10 +08:00
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
2023-04-04 16:55:34 +08:00
plugins: ['prettier-plugin-packagejson'],
2023-04-04 17:29:58 +08:00
overrides: [
{
files: '.*rc',
options: {
parser: 'json',
},
},
],
2020-09-28 20:19:10 +08:00
};