prettier.config.js 236 B

123456789
  1. export default {
  2. singleQuote: false, // 使⽤单引号
  3. semi: true, // 句末分号
  4. tabWidth: 2, // 缩进⻓度
  5. trailingComma: "none", // 末尾逗号
  6. useTabs: false, // 使用空格缩进
  7. endOfLine: "auto" // 换⾏符
  8. };