Skip to content

Commit 87d2aa8

Browse files
committed
run lint-to-the-future ignore
1 parent 6a89917 commit 87d2aa8

37 files changed

+98
-43
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# compiled output
66
/dist/
77
/tmp/
8+
/dist-*
89

910
# dependencies
1011
/bower_components/

.stylelintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
# compiled output
55
/dist/
6+
/dist-*
67

78
# addons
89
/.node_modules.ember-try/
10+
11+
/node_modules/

.stylelintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable prettier/prettier */
12
'use strict';
23

34
module.exports = {

addon/components/es-footer-help.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{! template-lint-disable no-whitespace-for-layout }}
12
<div class="footer-help">
23
<p class="container py-1">
34

addon/components/es-footer-info.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{! template-lint-disable no-redundant-role }}
12
<div class="footer-info container">
23
<div class="footer-info-links">
34

addon/components/es-header-navbar-link.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{! template-lint-disable no-at-ember-render-modifiers }}
12
<li
23
class='navbar-list-item {{if this.isDropdown "dropdown"}}'
34
{{did-insert this.setElement}}

addon/components/es-header.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{! template-lint-disable no-redundant-landmark-role }}
1+
{{! template-lint-disable no-redundant-role }}
22
<header
33
class="es-header"
44
role="banner"

addon/components/es-note.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{! template-lint-disable no-redundant-role }}
12
<div class="cta" ...attributes>
23
<div class="cta-note">
34
<div class="cta-note-body">

addon/components/es-progress-bar.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
{{! template-lint-disable no-invalid-aria-attributes }}
12
<div class="progress-bar" aria-hidden style={{this.progress.style}} ...attributes></div>

addon/components/es-sidebar.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{! template-lint-disable no-unsupported-role-attributes }}
12
<nav class="es-sidebar" aria-label="Secondary content navigation" aria-expanded="{{this.isOpen}}" ...attributes>
23
<EsButton
34
@secondary={{true}}

0 commit comments

Comments
 (0)