.prettierrc 535 B

123456789101112
  1. /*
  2. prettier 配置文件
  3. 更多配置信息:https://prettier.io/docs/en/options.html
  4. */
  5. module.exports = {
  6. semi: true, // Semicolons 分号,默认需要分号
  7. tabWidth: 2, // 空格,默认 2,
  8. useTabs: false,
  9. singleQuote: true, // 单引号还是双引号,默认为false 双引号
  10. trailingComma: "all", // 逗号
  11. jsxBracketSameLine: false, // 默认为false,Put the > of a multi-line JSX element at the end of the last line instead of being alone on the next line (does not apply to self closing elements).
  12. };