VUE3+TS项目 在使用prettier格式化代码后会在语句前加分号 是配置文件不对吗 //prettier.config.js module.exports = { printWidth: 120, tabWidth: 2, useTabs: false, singleQuote: true, semi: false, trailingComma: "none", bracketSpacing: true, jsxSingleQuote: true, jsxBracketSameLine: false, arrowParens: "avoid" } 