美文网首页小程序
ESLint:Strings must use single q

ESLint:Strings must use single q

作者: 闹闹也会有脾气 | 来源:发表于2018-04-24 23:42 被阅读5216次

ESLint:Strings must use single quote

1、在 .eslintrc.js 配置你的规则rule
rules: {
  ···
  "quotes": [1, "single"], //引号类型 `` "" ''
  ···
}
2、万能方法,就是在报错的JS文件中第一行写上 
/* eslint-disable */

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

相关文章

网友评论

    本文标题:ESLint:Strings must use single q

    本文链接:https://www.haomeiwen.com/subject/fenslftx.html