当前位置: 首页 > 工具软件 > End.js > 使用案例 >

.prettierrc.js配置

吕灿
2023-12-01
module.exports = {
  printWidth: 300, //一行的字符数,如果超过会进行换行,默认为80
  singleQuote: true, //字符串是否使用单引号,默认为false,使用双引号
  endOfLine: 'auto', //避免报错delete (cr)的错
  semi: false,
  singleQuote: true, // 使用单引号
  printWidth: 115,
  proseWrap: 'always',
  semi: false, // 不加分号
  trailingComma: 'none', // 结尾处不加逗号
  htmlWhitespaceSensitivity: 'ignore', // 忽略'>'下落问题
}

 类似资料: