Closed
Description
It would be great to have the ability of having only one style for the template/render function HTML, by enforcing an indentation style.
It could be configured by setting the option to tab
for tabs or a positive number for spaces.
Proposal:
- For tabs
'vue/indent': 'tab'
<application>
<component />
</application>
- For 2 spaces:
'vue/indent': 2
<application>
<component />
</application>
- No indentation:
'vue/indent': 0
<application>
<component />
</application>