Skip to content

Commit 2634313

Browse files
committed
template-lint: Enable a11y preset
1 parent 3af0727 commit 2634313

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)