Ensures that all Stencil decorators are used in a consistent style.
One argument which is an object with the keys "prop", "state", "element", "event", "method", "watch", "listen".
All of it can be set to a string, which must be one of the following values:
"inline""multiline""ignore"
A member is considered “multiline” if its declaration is on a line after the last decorator. If decorators are composed (multiple decorators for a single declaration), "multiline" requires each decorator to be on its own line.
{ "stencil/decorators-style": ["error", { "prop": "inline", "method": "multiline" }] }{
"type": "array",
"items": {
"type": "string"
}
}Fix included