黑马程序员 大事件

在写黑马程序员大事件中,出现eslint配置不生效,prettier不生效问题
一、eslint配置无法生效
1、eslint配置无法生效:
vscode的setting.json, "source.fixAll": true提示错误,要字符串,修改为"always"即可。

"editor.codeActionsOnSave": {
   "source.fixAll": "always"
},
"editor.formatOnSave": false,

2、原因是老师的版本是eslint9.0版本以下,配置文件为.eslintrc.cjs,而eslint9.0版本以上要求配置文件为.eslint.config.js。格式有变化:

在eslint.config.js文件中添加以下内容:
1、导入:
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
2、将导入的应用上:
js.configs.recommended,

...pluginVue.configs【'flat/essential'】,

skipFormatting,

eslintPluginPrettierRecommended,
3、老师要导入的部分,用{}包住即可

你可能感兴趣的:(vue.js前端)