UNPKG

ember-template-lint

Version:
19 lines (16 loc) 409 B
import Rule from './_base.js'; const ERROR_MESSAGE = 'Only `...attributes` can be applied to elements'; export default class SplatAttributesOnly extends Rule { visitor() { return { AttrNode(node) { if (node.name.startsWith('...') && node.name !== '...attributes') { this.log({ message: ERROR_MESSAGE, node, }); } }, }; } }