@@ -28,6 +28,7 @@ _______
2828class Something {
2929}
3030```
31+
3132
3233##### Base component
3334
@@ -39,6 +40,7 @@ class Something {
3940class TestThemeableComponent {
4041}
4142```
43+
4244
4345##### Wrapper component
4446
@@ -55,6 +57,7 @@ Filename: `lint/test/fixture/src/app/test/themed-test-themeable.component.ts`
5557class ThemedTestThemeableComponent extends ThemedComponent <TestThemeableComponent > {
5658}
5759```
60+
5861
5962##### Override component
6063
@@ -68,6 +71,7 @@ Filename: `lint/test/fixture/src/themes/test/app/test/test-themeable.component.t
6871class Override extends BaseComponent {
6972}
7073```
74+
7175
7276
7377
@@ -82,6 +86,9 @@ class Override extends BaseComponent {
8286})
8387class TestThemeableComponent {
8488}
89+
90+
91+
8592```
8693Will produce the following error(s):
8794```
@@ -109,6 +116,9 @@ Filename: `lint/test/fixture/src/app/test/themed-test-themeable.component.ts`
109116})
110117class ThemedTestThemeableComponent extends ThemedComponent <TestThemeableComponent > {
111118}
119+
120+
121+
112122```
113123Will produce the following error(s):
114124```
@@ -139,6 +149,9 @@ Filename: `lint/test/fixture/src/app/test/themed-test-themeable.component.ts`
139149})
140150class ThemedTestThemeableComponent extends ThemedComponent <TestThemeableComponent > {
141151}
152+
153+
154+
142155```
143156Will produce the following error(s):
144157```
@@ -173,6 +186,9 @@ import { SomethingElse } from './somewhere-else';
173186})
174187class ThemedTestThemeableComponent extends ThemedComponent <TestThemeableComponent > {
175188}
189+
190+
191+
176192```
177193Will produce the following error(s):
178194```
@@ -209,6 +225,9 @@ import { Something, SomethingElse } from './somewhere-else';
209225})
210226class ThemedTestThemeableComponent extends ThemedComponent <TestThemeableComponent > {
211227}
228+
229+
230+
212231```
213232Will produce the following error(s):
214233```
@@ -239,6 +258,9 @@ Filename: `lint/test/fixture/src/themes/test/app/test/test-themeable.component.t
239258})
240259class Override extends BaseComponent {
241260}
261+
262+
263+
242264```
243265Will produce the following error(s):
244266```
0 commit comments