How can I disable the max-len warnings globally within the
<template> </template>
tags in the .vue files?
The reason I want to do this is I don't want to write
<!-- eslint-disable max-len -->
each time.
I also don't want to disable it globally for the whole vue file, so I still want to get a warning within the script tag.