Skip to content

Latest commit

 

History

History
94 lines (67 loc) · 2.28 KB

block-lang.md

File metadata and controls

94 lines (67 loc) · 2.28 KB
pageClass sidebarDepth title description since
rule-details
0
vue/block-lang
disallow use other than available `lang`
v7.15.0

vue/block-lang

disallow use other than available lang

📖 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"
      }
    }
  ]
}
<!-- ✓ GOOD -->
<script lang="ts">
</script>
<!-- ✗ 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 the lang 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 ... If true, allows the lang attribute not to be specified (allows the use of the default language of block).

::: warning Note 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.

See also Vetur - Syntax Highlighting. :::

{ script: { lang: 'js' } }

Same as { script: { allowNoLang: true } }.

<!-- ✓ GOOD -->
<script>
</script>
<!-- ✗ BAD -->
<script lang="js">
</script>

🚀 Version

This rule was introduced in eslint-plugin-vue v7.15.0

🔍 Implementation