Skip to content

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

disallow spaces around equal signs in attribute

  • ⚙️ This rule is included in the following preset configs:
    • *.configs["flat/strongly-recommended"]
    • *.configs["flat/vue2-strongly-recommended"]
    • *.configs["flat/recommended"]
    • *.configs["flat/vue2-recommended"]
    • "plugin:vue/strongly-recommended"
    • "plugin:vue/vue2-strongly-recommended"
    • "plugin:vue/recommended"
    • "plugin:vue/vue2-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.

Now loading...

Info

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

🔧 Options

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

📚 Further Reading

🚀 Version

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

🔍 Implementation