mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 05:12:24 +00:00
20 lines
363 B
JavaScript
20 lines
363 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
semi: true,
|
|
vueIndentScriptAndStyle: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
plugins: ['prettier-plugin-packagejson'],
|
|
overrides: [
|
|
{
|
|
files: '.*rc',
|
|
options: {
|
|
parser: 'json',
|
|
},
|
|
},
|
|
],
|
|
};
|