Skip to content

Commit 193d1e8

Browse files
committed
Ignore eslint ember/no-attrs-in-components
1 parent a19a765 commit 193d1e8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

addon/-private/dynamic-attribute-bindings.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default Mixin.create({
88
this._super(...arguments);
99

1010
let newAttributeBindings = [];
11+
// eslint-disable-next-line ember/no-attrs-in-components
1112
for (let key in this.attrs) {
1213
if (this.NON_ATTRIBUTE_BOUND_PROPS.indexOf(key) === -1 && this.attributeBindings.indexOf(key) === -1) {
1314
newAttributeBindings.push(key);

0 commit comments

Comments
 (0)