vscode 中配置eslint格式化代码

vscode 中配置eslint格式化代码

打开设置->设置 搜索 settings.json

 编辑配置

 

//autoFixedOnSave 设置已废弃,采用如下新的设置
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
    },
    "eslint.format.enable": true,
    //autoFix默认开启,只需输入字符串数组即可
    "eslint.validate": [
        "javascript",
        "vue",
        "html"
    ],

  

 

vscode 中配置eslint格式化代码

上一篇:C++11 强枚举类型


下一篇:将大量ASCII码值转换成字符函数CHR()的小技巧