ESLint:403行超过最大行长120(max-len)
我有一个长字符串,它是使用 ES6 模板字符串构建的,但我希望它没有换行符:
var string = `Let me be the 'throws Exception’ to your 'public static void
main (String[] args)’. I will accept whatever you give me my ${love}.`
console.log(string);
结果:
Let me be the 'throws Exception’ to your 'public static void
main (String[] args)’. I will accept whatever you give me xxx.
我的期望:
Let me be the 'throws Exception’ to your 'public static void main (String[] args)’. I will accept whatever you give me xxx.
要求:
我不能禁用 eslint 规则,因为必须强制执行。
我不能将数据放在单独的文件中,因为数据是动态的。
我不能连接多个较短的字符串,因为那是太多的工作。