scriptIndent
Control whether the code block in the <script> tag should be indented or not.
Default option is false.
This global option can be overridden for individual languages by the following options:
html.scriptIndentvue.scriptIndentsvelte.scriptIndentastro.scriptIndent
Example for false
<script>
const a = 0
</script>
Example for true
<script>
const a = 0
</script>