JS.VUE.BLOCK.LANG
Do not use languages other than those available in your application for the lang attribute of block elements
Rule Details
This rule disallows the use of languages other than those available in the your application for the lang attribute of block elements.
Options
{
"vue/block-lang": ["error",
{
"script": {
"lang": "ts"
}
}
]
}
{'vue/block-lang': ['error', { script: { lang: 'ts' } }]}
<!-- GOOD -->
<script lang="ts">
</script>
{'vue/block-lang': ['error', { script: { lang: 'ts' } }]}
<!-- BAD -->
<script>
</script>
Specify the block name for the key of the option object.
You can use the object as a value and use the following properties:
lang
... Specifies the available value for thelang
attribute of the block. If multiple languages are available, specify them as an array. If you do not specify it, will disallow any language.allowNoLang
... Iftrue
, allows thelang
attribute not to be specified (allows the use of the default language of block).
If the default language is specified for lang
option of <template>
, <style>
and <script>
, it will be enforced to not specify lang
attribute.
This is to prevent unintended problems with Vetur (https://vuejs.github.io/vetur/).
See also Vetur - Syntax Highlighting (https://vuejs.github.io/vetur/guide/highlighting.html).
{ script: { lang: 'js' } }
Same as { script: { allowNoLang: true } }
.
{'vue/block-lang': ['error', { script: { lang: 'js' } }]}
<!-- GOOD -->
<script>
</script>
{'vue/block-lang': ['error', { script: { lang: 'js' } }]}
<!-- BAD -->
<script lang="js">
</script>