1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| /*
| * @Description: file content
| * @Author: your name
| * @version:
| * @Date: 2024-03-24 11:16:49
| * @LastEditors: your name
| * @LastEditTime: 2024-06-10 14:39:30
| */
| module.exports = {
| printWidth: 100,
| semi: true,
| vueIndentScriptAndStyle: true,
| singleQuote: true,
| trailingComma: 'all',
| proseWrap: 'never',
| htmlWhitespaceSensitivity: 'ignore', //'strict',
| endOfLine: 'auto',
| plugins: ['prettier-plugin-packagejson'],
| overrides: [
| {
| files: '.*rc',
| options: {
| parser: 'json',
| },
| },
| ],
| };
|
|