Skip to content

Commit 3887c09

Browse files
committed
Auto merge of #2470 - Turbo87:no-curly, r=locks
template-lint: Enable `no-curly-component-invocation` and `require-valid-alt-text` rules This PR enables two more recommended ember-template-lint rules 🎉
2 parents 8e7062b + 6562e27 commit 3887c09

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.template-lintrc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ module.exports = {
66
extends: 'octane',
77

88
rules: {
9-
'require-valid-alt-text': false,
109
'no-action': false,
11-
'no-curly-component-invocation': false,
1210
},
1311
};

app/templates/dashboard.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
{{#if this.loadMoreTask.isRunning}}
6464
<span local-class='load-more'>
65-
<img src="/assets/ajax-loader.gif">
65+
<img src="/assets/ajax-loader.gif" alt="Loading">
6666
</span>
6767
{{else}}
6868
{{#if this.hasMore}}

0 commit comments

Comments
 (0)