vue中eslint报错

 

 

 

打开用户配置

在用户设置中填写如下配置:

  1. {
  2. "eslint.autoFixOnSave": true,
  3. "eslint.validate": [
  4. "javascript",
  5. "javascriptreact",
  6. {
  7. "language": "html",
  8. "autoFix": true
  9. },
  10. {
  11. "language": "vue",
  12. "autoFix": true
  13. }
  14. ]
  15. }

eslint.autoFixOnSave 用来进行保存时自动格式化,但是默认只支持 javascript .js 文件

eslint.validate 用来配置作用的文件类型。

posted @ 2020-06-20 21:53  小迷鹿呀  阅读(236)  评论(0编辑  收藏  举报