Skip to content

Commit 0f7402d

Browse files
committed
update generated readme
1 parent 68796bd commit 0f7402d

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

transforms/no-implicit-this/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ ember-no-implicit-this-codemod no-implicit-this path/of/files/ or/some**/*glob.j
1818
* [angle-brackets-with-block-params](#angle-brackets-with-block-params)
1919
* [angle-brackets-with-hash-params](#angle-brackets-with-hash-params)
2020
* [angle-brackets-without-params](#angle-brackets-without-params)
21+
* [batman](#batman)
2122
* [built-in-helpers](#built-in-helpers)
2223
* [comments](#comments)
2324
* [custom-helpers](#custom-helpers)
@@ -133,6 +134,26 @@ ember-no-implicit-this-codemod no-implicit-this path/of/files/ or/some**/*glob.j
133134
<Foo />
134135
<Foo></Foo>
135136
137+
```
138+
---
139+
<a id="batman">**batman**</a>
140+
141+
**Input** (<small>[batman.input.hbs](transforms/no-implicit-this/__testfixtures__/batman.input.hbs)</small>):
142+
```hbs
143+
{{addon-name$helper-name}}
144+
{{addon-name$component-name}}
145+
<AddonName$ComponentName />
146+
<AddonName$SomeFolderName::ComponentName />
147+
148+
```
149+
150+
**Output** (<small>[batman.output.hbs](transforms/no-implicit-this/__testfixtures__/batman.output.hbs)</small>):
151+
```hbs
152+
{{addon-name$helper-name}}
153+
{{addon-name$component-name}}
154+
<AddonName$ComponentName />
155+
<AddonName$SomeFolderName::ComponentName />
156+
136157
```
137158
---
138159
<a id="built-in-helpers">**built-in-helpers**</a>

0 commit comments

Comments
 (0)