Skip to content

Commit ca0c389

Browse files
authored
Merge pull request #1346 from adopted-ember-addons/angle-codemod-addon
remove all unused template-lint-disable directives
2 parents eddcd07 + 9f96e12 commit ca0c389

30 files changed

+12
-36
lines changed

addon/components/paper-autocomplete/options/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{! template-lint-disable no-at-ember-render-modifiers no-unnecessary-concat }}
1+
{{! template-lint-disable no-at-ember-render-modifiers }}
22
<VerticalCollection
33
@items={{@options}}
44
@tagName="ul"

addon/components/paper-button.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! template-lint-disable no-curly-component-invocation }}
21
{{#if (has-block)}}
32
{{yield}}
43
{{else}}

addon/components/paper-checkbox.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! template-lint-disable no-curly-component-invocation }}
21
<div class="md-container">
32
<div class="md-icon"></div>
43
<PaperRipple

addon/components/paper-input.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{! template-lint-disable no-autofocus-attribute no-curly-component-invocation no-positive-tabindex }}
1+
{{! template-lint-disable no-autofocus-attribute no-positive-tabindex }}
22
{{#if @label}}
33
<label for={{this.inputElementId}} class={{if @required "md-required"}}>{{@label}}</label>
44
{{/if}}

addon/components/paper-item.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! template-lint-disable no-with }}
21
{{#let (hash
32
checkbox=(component "paper-checkbox" parentComponent=this bubbles=false shouldRegister=true)
43
button=(component "paper-button" parentComponent=this bubbles=false shouldRegister=true skipProxy=true)

addon/components/paper-menu/content/template.hbs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{! template-lint-disable no-at-ember-render-modifiers }}
1+
{{! template-lint-disable no-at-ember-render-modifiers no-invalid-interactive }}
22
{{!-- send the backdrop to the same place as the content --}}
33
{{#if @dropdown.isOpen}}
44
{{#maybe-in-element this.destinationElement @renderInPlace}}
@@ -26,8 +26,7 @@
2626
@otherStyles={{this.customStyles}}
2727
@animationEnabled={{false}}
2828
...attributes>
29-
{{! template-lint-disable no-invalid-interactive }}
30-
<md-menu-content width={{@width}} class={{if @dense "md-dense"}} {{did-insert this.focusItem}} {{on "keydown" this.handleKeyDown}}>
29+
<md-menu-content width={{@width}} class={{if @dense "md-dense"}} {{did-insert this.focusItem}} {{on "keydown" this.handleKeyDown}}>
3130
{{yield (hash
3231
menu-item=(component "paper-menu/item" dropdown=@dropdown parentComponent=this)
3332
)}}

addon/components/paper-menu/item/template.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! template-lint-disable no-invalid-interactive }}
21
<md-menu-item {{on "mouseenter" this.handleMouseEnter}} ...attributes disabled={{@disabled}}>
32
{{#if this.shouldRenderButton}}
43
<PaperButton @onClick={{this.handleClick}} @href={{@href}} @target={{@target}} @disabled={{@disabled}}>
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
{{! template-lint-disable no-curly-component-invocation }}
21
<label>{{@label}}</label>
32
{{yield}}

addon/components/paper-radio-base.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! template-lint-disable no-curly-component-invocation }}
21
<div class="md-container">
32
<div class="md-off"></div>
43
<div class="md-on"></div>

addon/components/paper-radio-group-label.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! template-lint-disable no-curly-component-invocation }}
21
{{#if (has-block)}}
32
{{yield}}
43
{{else}}

0 commit comments

Comments
 (0)