VS Code插件Prettier - Code formatter格式化无效解决

在Vue代码格式插件文章配置好json文件后,保存后代码还是为进行自动格式化。可以在此的基础上添加代码。
1、进入设置面板
VS Code插件Prettier - Code formatter格式化无效解决_第1张图片
2、点击按钮打开json文件
VS Code插件Prettier - Code formatter格式化无效解决_第2张图片
3、复制以下代码追加粘贴

    "typescript.preferences.quoteStyle": "single",
    "editor.tabSize": 2,
    "[typescript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "prettier.requireConfig": false,
    "prettier.singleQuote": true,
    "editor.formatOnSave": true,
    "editor.detectIndentation": false,
    "editor.formatOnSave": true,
    "files.associations": {
    }

之前本人也是出现配置后 还是无法格式化代码,之后经过多番查阅后,用以上方法解决!

你可能感兴趣的:(vue,vscode,代码规范)