在写黑马程序员大事件中,出现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、老师要导入的部分,用{}包住即可
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。