.prettierrc.js 203 B

123456789
  1. module.exports = {
  2. semi: false,
  3. trailingComma: "none",
  4. singleQuote: true,
  5. printWidth: 120,
  6. tabWidth: 2,
  7. arrowParens: "avoid",
  8. endOfLine: "auto" // 结尾是 \n \r \n\r auto
  9. };