我们在使用vsCode过程中格式化代码,使用Ctrl+Shift+F,会将单引号变为双引号,会无缘无故的添加逗号。
解决办法:在项目的根目录下创建 .prettierrc文件。如下内容
{ "semi": false, "singleQuote": true, "trailingComma": "none" }
vsCode格式化配置与eslint不冲突
原文:https://www.cnblogs.com/tdcqcrtd/p/14608920.html