File tree Expand file tree Collapse file tree
transforms/no-implicit-this Expand file tree Collapse file tree Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments