ESLint 配置文件扩展名

  • 最近 vscode 更新后:
    配置更新
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "typescript",
        "typescriptreact",
        "html",
        "vue",
        "tsx"
    ],
    "editor.codeActionsOnSave": {
        "source.fixAll": true,
        "source.fixAll.tslint": true,
        "source.fixAll.eslint": true
    }

上货

    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        {
            "language": "vue",
            "autoFix": true
        },
        {
            "language": "typescript",
            "autoFix": true
        }
    ]

你可能感兴趣的:(ESLint 配置文件扩展名)