Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.67 KB

no-spaces-around-equal-signs-in-attribute.md

File metadata and controls

55 lines (39 loc) · 1.67 KB
pageClass sidebarDepth title description since
rule-details
0
vue/no-spaces-around-equal-signs-in-attribute
disallow spaces around equal signs in attribute
v5.0.0

vue/no-spaces-around-equal-signs-in-attribute

disallow spaces around equal signs in attribute

  • ⚙️ This rule is included in all of "plugin:vue/vue3-strongly-recommended", "plugin:vue/strongly-recommended", "plugin:vue/vue3-recommended" and "plugin:vue/recommended".
  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

📖 Rule Details

This rule disallow spaces around equal signs in attribute.

<template>
  <!-- ✗ BAD -->
  <div class = "item"></div>
  <!-- ✓ GOOD -->
  <div class="item"></div>
</template>

::: tip Info HTML5 allows spaces around equal signs. But space-less is easier to read, and groups entities better together. :::

🔧 Options

{
  "vue/no-spaces-around-equal-signs-in-attribute": ["error"]
}

📚 Further Reading

🚀 Version

This rule was introduced in eslint-plugin-vue v5.0.0

🔍 Implementation