You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
788 B

// 说明prettier 插件代码格式规则配置
module.exports = {
// "singleQuote": true, // 使用单引号默认false
"printWidth": 80, // 每行代码长度默认80
"tabWidth": 2, // 每个tab相当于多少个空格默认2
"useTabs": false, // 是否使用tab进行缩进默认false
"semi": true, // 声明结尾使用分号(默认true)
"trailingComma": "all", // 多行使用拖尾逗号默认none
"bracketSpacing": true, // 对象字面量的大括号间使用空格默认true
"jsxBracketSameLine": true, // 多行JSX中的>放置在最后一行的结尾而不是另起一行默认false
"arrowParens": "avoid" // 只有一个参数的箭头函数的参数是否带圆括号默认avoid
};