module.exports = { // 定制格式化要求 overrides: [ { files: '.prettierrc', options: { parser: 'json' } } ], printWidth: 100, // 一行最多 100 字符 tabWidth: 2, // 使用 4 个空格缩进 semi: true, // 行尾需要有分号 singleQuote: true, // 使用单引号而不是双引号 useTabs: true, // 用制表符而不是空格缩进行 quoteProps: 'as-needed', // 仅在需要时在对象属性两边添加引号 jsxSingleQuote: false, // 在 JSX 中使用单引号而不是双引号 trailingComma: 'none', // 末尾不需要逗号 bracketSpacing: true, // 大括号内的首尾需要空格 bracketSameLine: false, // 将多行 HTML(HTML、JSX、Vue、Angular)元素反尖括号需要换行 arrowParens: 'always', // 箭头函数,只有一个参数的时候,也需要括号 avoid rangeStart: 0, // 每个文件格fsingleQuote式化的范围是开头-结束 rangeEnd: Infinity, // 每个文件格式化的范围是文件的全部内容 requirePragma: false, // 不需要写文件开头的 @prettier insertPragma: false, // 不需要自动在文件开头插入 @prettier proseWrap: 'preserve', // 使用默认的折行标准 always htmlWhitespaceSensitivity: 'css', // 根据显示样式决定 html 要不要折行 vueIndentScriptAndStyle: false, //(默认值)对于 .vue 文件,不缩进