Skip to content

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:

json
{
  "vue/no-restricted-static-attribute": ["error", "foo", "bar"]
}
Now loading...

Alternatively, the rule also accepts objects.

json
{
  "vue/no-restricted-static-attribute": [
    "error",
    {
      "key": "stlye",
      "message": "Using \"stlye\" is not allowed. Use \"style\" instead."
    },
    {
      "key": "style",
      "element": "/^([A-Z][a-zA-Z_-]*)$/",
      "message": "Using \"style\" is not allowed in custom component. Use \"class\" 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" }

Now loading...

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

Now loading...

🚀 Version

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

🔍 Implementation