Skip to content

Commit f713f07

Browse files
committed
Auto merge of #3015 - Turbo87:a11y-preset, r=pichfl
template-lint: Enable `a11y` preset see https://github.com/ember-template-lint/ember-template-lint/blob/master/lib/config/a11y.js r? `@locks`
2 parents 35b3a23 + 2634313 commit f713f07

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.template-lintrc.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
'use strict';
22

33
module.exports = {
4-
extends: 'octane',
4+
extends: ['octane', 'a11y'],
5+
6+
pending: [
7+
{ moduleId: 'app/components/email-input', only: ['require-input-label'] },
8+
{ moduleId: 'app/components/header', only: ['no-duplicate-landmark-elements'] },
9+
// see https://github.com/ember-template-lint/ember-template-lint/issues/1604
10+
{ moduleId: 'app/components/pagination', only: ['no-invalid-link-title'] },
11+
{ moduleId: 'app/templates/catch-all', only: ['require-input-label'] },
12+
{ moduleId: 'app/components/settings/api-tokens', only: ['require-input-label'] },
13+
],
514
};

0 commit comments

Comments
 (0)