typescript-tutorial icon indicating copy to clipboard operation
typescript-tutorial copied to clipboard

代码检查一章配置出错

Open DS0818 opened this issue 5 years ago • 0 comments

开启保存时自动修复的功能:

{
    "eslint.autoFixOnSave": true,
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
            "language": "typescript",
            "autoFix": true
        },
    ],
    "typescript.tsdk": "node_modules/typescript/lib"
}

vscode现在要改成:

{
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "typescript"
    ],
    "typescript.tsdk": "node_modules/typescript/lib",
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
    }
}

DS0818 avatar Dec 26 '19 05:12 DS0818