1. 全局安装 eslint

npm install -g eslint

2. control + shift + p 输入 settings 打开设置进行配置

在这里插入图片描述

3. 添加配置

{
    "workbench.colorTheme": "One Dark Pro",
    "eslint.debug": true,
    "eslint.execArgv": null,
    "eslint.alwaysShowStatus": true,
    "editor.codeActionsOnSave": {
        "source.fixAll": true,
        "source.fixAll.eslint": true
    },
    "eslint.validate": [
        "javascript",
        "vue",
        "html",
        "typescript",
    ],
    "[vue]": {
        "editor.defaultFormatter": "octref.vetur"
    },
    "eslint.format.enable": true,
    "eslint.runtime": "",
}```

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐