Skip to content

Commit

Permalink
Fix max-attributes-per-line example json configuration (#200)
Browse files Browse the repository at this point in the history
The first value of the array is expected to be the severity.
Keys must be in double quotes.
  • Loading branch information
maoberlehner authored and michalsnik committed Oct 9, 2017
1 parent 92a1ae1 commit 8a4d02b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/rules/max-attributes-per-line.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ There is a configurable number of attributes that are acceptable in one-line cas

```
{
"vue/max-attributes-per-line": [{
"vue/max-attributes-per-line": [2, {
"singleline": 3,
"multiline": {
max: 1,
allowFirstLine: false
"max": 1,
"allowFirstLine": false
}
}]
}
Expand Down

0 comments on commit 8a4d02b

Please sign in to comment.