prettier.config.js
Posted AlanTao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了prettier.config.js相关的知识,希望对你有一定的参考价值。
module.exports = { printWidth: 120, // 行长规则通常设置为100或120 singleQuote: true, // 使用单引号, 默认false semi: true, // 使用分号, 默认true arrowParens: ‘avoid‘, // 箭头函数参数添加括号 trailingComma: ‘es5‘, // 在ES5中有效的结尾逗号(对象,数组等) useTabs: true, // 在ES5中有效的结尾逗号(对象,数组等) };
以上是关于prettier.config.js的主要内容,如果未能解决你的问题,请参考以下文章
vue-cli4 ESLint + prettier 修改插件规则实例