/* * @Author:dingyuwen * @Date: 2022-08-10 14:10:23 * @LastEditTime: 2022-08-10 15:52:05 * @LastEditors:dingyuwen * @Description: */ module.exports = { tabWidth: 2, useTabs: false, printWidth: 120, semi: false, singleQuote: true, arrowParens: 'avoid', trailingComma: 'all', // 尾随逗号 bracketSpacing: true, // 对象中打印空格 jsxSingleQuote: true, jsxBracketSameLine: false, // 在jsx中把'>' 放同一行 insertPragma: false, // 插入@format标识 ignorePath: '.prettierignore', proseWrap: 'never', htmlWhitespaceSensitivity: 'strict', endOfLine: 'auto', vueIndentScriptAndStyle: true, };