Open
Description
In the documentation I found this example which didn't work. I made it work by removing the additional parentheses.
Did not work
{
"vue/block-order": ["error", {
"order": [ [ "script", "template" ], "style" ]
}]
}
Worked for me
"vue/block-order": ["error", { order: ["script", "template", "style"] }],
If I'm not the only one, I think it's just a small documentation error.