# vue/no-restricted-static-attribute

disallow specific attribute

# 📖 Rule Details

This rule allows you to specify attribute names that you don't want to use in your application.

# 🔧 Options

This rule takes a list of strings, where each string is a attribute name or pattern to be restricted:

{
  "vue/no-restricted-static-attribute": ["error", "foo", "bar"]
}
<template> <!-- ✗ BAD --> <div foo="x" /> <div bar /> </template>
Now loading...

Alternatively, the rule also accepts objects.

{
  "vue/no-restricted-static-attribute": ["error",
    {
      "key": "stlye",
      "message": "Using \"stlye\" is not allowed. Use \"style\" instead."
    }
  ]
}

The following properties can be specified for the object.

  • key ... Specify the attribute key name or pattern.
  • value ... Specify the value text or pattern or true. If specified, it will only be reported if the specified value is used. If true, it will only be reported if there is no value or if the value and key are same.
  • element ... Specify the element name or pattern. If specified, it will only be reported if used on the specified element.
  • message ... Specify an optional custom message.

# { "key": "foo", "value": "bar" }

<template> <!-- ✓ GOOD --> <div foo="foo" /> <!-- ✗ BAD --> <div foo="bar" /> </template>
Now loading...

# { "key": "foo", "element": "MyButton" }

<template> <!-- ✓ GOOD --> <CoolButton foo="x" /> <!-- ✗ BAD --> <MyButton foo="x" /> </template>
Now loading...

# 🚀 Version

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

# 🔍 Implementation

Last Updated: 12/24/2020, 2:51:18 AM