ember-template-lint
Version:
Linter for Ember or Handlebars templates.
27 lines (23 loc) • 717 B
JavaScript
import Rule from './_base.js';
export default class NoClassBindings extends Rule {
/**
* @returns {import('./types.js').VisitorReturnType<NoClassBindings>}
*/
visitor() {
function check(node) {
let isAttrNode = node.type === 'AttrNode';
let specifiedKey = isAttrNode ? node.name : node.key;
let argumentName = isAttrNode ? node.name : `@${node.key}`;
if (argumentName === '@classBinding' || argumentName === '@classNameBindings') {
this.log({
message: `Passing the \`${specifiedKey}\` property as an argument within templates is not allowed.`,
node,
});
}
}
return {
AttrNode: check,
HashPair: check,
};
}
}