1455668754
2024-04-18 302e2125ba1c7e63e7db47ef6e1ee256da9f81d4
提交 | 用户 | 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 };