smirkQAQ
2023-09-27 aa6168fe20db41a0cc964ca7ead8da904a75dc6e
提交 | 用户 | age
2f6253 1 module.exports = {
2   printWidth: 100,
3   semi: true,
4   vueIndentScriptAndStyle: true,
5   singleQuote: true,
56a966 6   trailingComma: 'all',
2f6253 7   proseWrap: 'never',
8   htmlWhitespaceSensitivity: 'strict',
7b7694 9   endOfLine: 'auto',
ba2415 10   plugins: ['prettier-plugin-packagejson'],
5e4be0 11   overrides: [
V 12     {
13       files: '.*rc',
14       options: {
15         parser: 'json',
16       },
17     },
18   ],
2f6253 19 };