Skip to content

Commit

Permalink
Fix Prettier issue introduced in #0096eeb (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertAKARobin authored Jan 4, 2025
1 parent 0096eeb commit 5840332
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/rules/no-restricted-attr-values.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ This rule takes an array of option objects, where the `attrPatterns` and `attrVa

```js
module.exports = {
"rules": {
rules: {
"@html-eslint/no-restricted-attrs": [
"error",
{
attrPatterns: ["class", "alt"],
attrValuePatterns: ["data-.*"],
message: "\'data-x\' is restricted."
message: "'data-x' is restricted.",
},
{
attrPatterns: [".*"],
attrValuePatterns: ["^foo$"],
message: "\'foo\' is restricted."
}
message: "'foo' is restricted.",
},
],
}
},
};
```

Expand Down

0 comments on commit 5840332

Please sign in to comment.