module.exports = { printWidth: 110, tabWidth: 4, semi: true, bracketSpacing: true, // 对象的括号是否留空白 singleQuote: true, trailingComma: 'none', // none|es5|all 多行时尾随逗号 jsxBracketSameLine: false, // jsx语法元素的>换行显示(不能应用于自关闭元素) arrowParens: 'avoid', // avoid|always 箭头函数唯一参数是否包含括号 proseWrap: 'preserve' // always|never|preserve };