配置eslint流程

Posted 单身girl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置eslint流程相关的知识,希望对你有一定的参考价值。



打开vscode 的settings.json
打开流程
左下角设置—>打开命令面板---->搜索settings选择
添加配置项

{
"editor.codeActionsOnSave": {
    "source.fixAll.stylelint": true, // 自动stylelint
    "source.fixAll.eslint": true
},
"eslint.alwaysShowStatus": true,
"eslint.validate": [
    "html",
    "vue",
    "css",
    "scss",
    "sass",
    "typescript",
    "javascript",
    "javascriptreact",
],
}

运行 npm run lint 试一下 over~

以上是关于配置eslint流程的主要内容,如果未能解决你的问题,请参考以下文章

React 创建项目流程+配置 eslint prettier 和 commitlint 规范工程

报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段

报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段

在VSCode中配置代码自动 eslint 格式化(修改eslint规则eslint忽略文件)

VUE CLI3项目搭建 ESLint配置

新版vscode配置eslint自动格式化代码