@@ -41,7 +41,7 @@ ruleTester.run(RULE_NAME, rule, {
41
41
} ,
42
42
43
43
/**
44
- * Databinding .
44
+ * Data-binding .
45
45
*/
46
46
{
47
47
// Explicit.
@@ -64,7 +64,7 @@ ruleTester.run(RULE_NAME, rule, {
64
64
} ,
65
65
66
66
/**
67
- * Databinding , with extra whitespaces and tabs.
67
+ * Data-binding , with extra whitespaces and tabs.
68
68
*/
69
69
{
70
70
// Explicit.
@@ -87,7 +87,7 @@ ruleTester.run(RULE_NAME, rule, {
87
87
} ,
88
88
89
89
/**
90
- * Databinding , with line-breaks.
90
+ * Data-binding , with line-breaks.
91
91
*/
92
92
{
93
93
// Explicit.
@@ -226,7 +226,7 @@ ruleTester.run(RULE_NAME, rule, {
226
226
} ,
227
227
228
228
/**
229
- * Databinding & interpolation with sub-properties.
229
+ * Data-binding & interpolation with sub-properties.
230
230
*/
231
231
{
232
232
// Explicit.
@@ -505,7 +505,7 @@ ruleTester.run(RULE_NAME, rule, {
505
505
} ,
506
506
507
507
/**
508
- * Template *reference* variable (`#template`) accessed via databinding .
508
+ * Template *reference* variable (`#template`) accessed via data-binding .
509
509
*/
510
510
{
511
511
code : `
@@ -590,11 +590,11 @@ ruleTester.run(RULE_NAME, rule, {
590
590
591
591
invalid : [
592
592
/**
593
- * Databinding .
593
+ * Data-binding .
594
594
*/
595
595
convertAnnotatedSourceToFailureCase ( {
596
596
description :
597
- "it fails with databinding implicit property where it should be an explicit property" ,
597
+ "it fails with data-binding implicit property where it should be an explicit property" ,
598
598
annotatedSource : `\
599
599
<test [bar]="foo">{{this.bar}}</test>
600
600
~~~` ,
@@ -606,7 +606,7 @@ ruleTester.run(RULE_NAME, rule, {
606
606
} ) ,
607
607
convertAnnotatedSourceToFailureCase ( {
608
608
description :
609
- "it fails with databinding explicit property where it should be an implicit property" ,
609
+ "it fails with data-binding explicit property where it should be an implicit property" ,
610
610
annotatedSource : `\
611
611
<test [bar]="this.foo">{{bar}}</test>
612
612
~~~~~~~~` ,
@@ -619,11 +619,11 @@ ruleTester.run(RULE_NAME, rule, {
619
619
} ) ,
620
620
621
621
/**
622
- * Databinding , with extra whitespaces and tabs.
622
+ * Data-binding , with extra whitespaces and tabs.
623
623
*/
624
624
convertAnnotatedSourceToFailureCase ( {
625
625
description :
626
- "it fails with databinding implicit property where it should be an explicit property" ,
626
+ "it fails with data-binding implicit property where it should be an explicit property" ,
627
627
annotatedSource : `\
628
628
<test [bar]=" foo ">{{this.bar}}</test>
629
629
~~~` ,
@@ -635,7 +635,7 @@ ruleTester.run(RULE_NAME, rule, {
635
635
} ) ,
636
636
convertAnnotatedSourceToFailureCase ( {
637
637
description :
638
- "it fails with databinding explicit property where it should be an implicit property" ,
638
+ "it fails with data-binding explicit property where it should be an implicit property" ,
639
639
annotatedSource : `\
640
640
<test [bar]=" this.foo ">{{bar}}</test>
641
641
~~~~~~~~` ,
@@ -648,11 +648,11 @@ ruleTester.run(RULE_NAME, rule, {
648
648
} ) ,
649
649
650
650
/**
651
- * Databinding , with line-breaks.
651
+ * Data-binding , with line-breaks.
652
652
*/
653
653
convertAnnotatedSourceToFailureCase ( {
654
654
description :
655
- "it fails with databinding implicit property where it should be an explicit property" ,
655
+ "it fails with data-binding implicit property where it should be an explicit property" ,
656
656
annotatedSource : `\
657
657
<test [bar]="
658
658
@@ -670,7 +670,7 @@ ruleTester.run(RULE_NAME, rule, {
670
670
} ) ,
671
671
convertAnnotatedSourceToFailureCase ( {
672
672
description :
673
- "it fails with databinding explicit property where it should be an implicit property" ,
673
+ "it fails with data-binding explicit property where it should be an implicit property" ,
674
674
annotatedSource : `\
675
675
<test [bar]="
676
676
@@ -835,7 +835,7 @@ test {{
835
835
} ) ,
836
836
837
837
/**
838
- * Databinding & interpolation with sub-properties.
838
+ * Data-binding & interpolation with sub-properties.
839
839
*/
840
840
convertAnnotatedSourceToFailureCase ( {
841
841
description :
@@ -884,11 +884,11 @@ test {{
884
884
} ) ,
885
885
886
886
/**
887
- * Template *reference* variable (`#template`) accessed via databinding .
887
+ * Template *reference* variable (`#template`) accessed via data-binding .
888
888
*/
889
889
convertAnnotatedSourceToFailureCase ( {
890
890
description :
891
- "it fails with implicit template reference variable via databinding where it should be explicit." ,
891
+ "it fails with implicit template reference variable via data-binding where it should be explicit." ,
892
892
annotatedSource : `\
893
893
<test-elm-with-id #test_identifier>
894
894
<test-elm-child [prop]="test_identifier.property"></test-elm-child>
@@ -905,7 +905,7 @@ test {{
905
905
} ) ,
906
906
convertAnnotatedSourceToFailureCase ( {
907
907
description :
908
- "it fails with explicit template reference variable via databinding where it should be implicit." ,
908
+ "it fails with explicit template reference variable via data-binding where it should be implicit." ,
909
909
annotatedSource : `\
910
910
<test-elm-with-id #test_identifier>
911
911
<test-elm-child [prop]="this.test_identifier.property"></test-elm-child>
@@ -1145,11 +1145,11 @@ test {{
1145
1145
} ) ,
1146
1146
1147
1147
/**
1148
- * Databinding with weird indentation.
1148
+ * Data-binding with weird indentation.
1149
1149
*/
1150
1150
convertAnnotatedSourceToFailureCase ( {
1151
1151
description :
1152
- "it fails with databinding implicit property where it should be an explicit property" ,
1152
+ "it fails with data-binding implicit property where it should be an explicit property" ,
1153
1153
annotatedSource : `\
1154
1154
<test
1155
1155
*ngIf="
@@ -1190,7 +1190,7 @@ test {{
1190
1190
} ) ,
1191
1191
convertAnnotatedSourceToFailureCase ( {
1192
1192
description :
1193
- "it fails with databinding implicit property where it should be an explicit property" ,
1193
+ "it fails with data-binding implicit property where it should be an explicit property" ,
1194
1194
annotatedSource : `\
1195
1195
<test
1196
1196
*ngIf="
0 commit comments