wolichuang / dailyInterview

面试、工作中遇到的issue
0 stars 0 forks source link

vue ESLint:Strings must use single quote #20

Open wolichuang opened 3 years ago

wolichuang commented 3 years ago

方法一

只要新建文件 .prettierrc
{
  "semi": false,
  "singleQuote": true
}

方法二

报错的JS文件中第一行写上 
/* eslint-disable */

Use /* eslint-disable */ to ignore all warnings in a file.