我正在使用airbnb eslint,目前出现错误:
错误:第6行超出path / to / file.vue:6:1处的最大行长度100(max-len):
<template lang="pug">
div
.container
.row
.col-xl-10.mx-auto
p Please let us know how you got here, and use the header buttons to navigate back to safe harbor.
</template>
有没有办法为上述段落文本禁用皮棉?
另外,如何将线长从100增加到120?
您可以将其添加到您的ESLint规则中:
This worked for me (even if I rather set it on for my projects).
You can find more information here if you want.