.prettierrc.js
568 Bytes
module.exports = {
// 行尾换行方式
endOfLine: 'lf',
// Tab空格数
tabWidth: 2,
// 使用Tab缩进
useTabs: false,
// 换行字符数
printWidth: 190,
// 开启 eslint 支持
eslintIntegration: true,
// 字符串单引号
singleQuote: true,
// 行尾分号
semi: true,
// 尾逗号 none es5 all
trailingComma: 'all',
// 大括号空格
bracketSpacing: true,
// 箭头函数参数只有一个时省略小括号
arrowParens: 'avoid',
// 标签闭合位置对齐
bracketSpacing: true,
ignorePath: '.prettierignore'
};