vue/script-indent warning
Enforce consistent indentation in <script>
Examples
❌ Incorrect
<script>
export default {
    name: 'my-component',
};
</script>
✅ Correct
<script>
    export default {
        name: 'my-component',
    };
</script>
 Netsells Code Standards
Netsells Code StandardsEnforce consistent indentation in <script>
❌ Incorrect
<script>
export default {
    name: 'my-component',
};
</script>
✅ Correct
<script>
    export default {
        name: 'my-component',
    };
</script>