@@ -576,7 +576,7 @@ Current API:
576
576
</Important >
577
577
578
578
<sub >
579
- type: ` Array<CustomGroupDefinition | CustomGroupBlockDefinition > `
579
+ type: ` Array<CustomGroupDefinition | CustomGroupAnyOfDefinition > `
580
580
</sub >
581
581
<sub >default: ` [] ` </sub >
582
582
@@ -601,7 +601,7 @@ A class member will match a `CustomGroupDefinition` group if it matches all the
601
601
or:
602
602
603
603
``` ts
604
- interface CustomGroupBlockDefinition {
604
+ interface CustomGroupAnyOfDefinition {
605
605
groupName: string
606
606
type? : ' alphabetical' | ' natural' | ' line-length' | ' unsorted'
607
607
order? : ' asc' | ' desc'
@@ -615,7 +615,7 @@ interface CustomGroupBlockDefinition {
615
615
}
616
616
```
617
617
618
- A class member will match a ` CustomGroupBlockDefinition ` group if it matches all the filters of at least one of the ` anyOf ` items.
618
+ A class member will match a ` CustomGroupAnyOfDefinition ` group if it matches all the filters of at least one of the ` anyOf ` items.
619
619
620
620
#### Attributes
621
621
@@ -714,6 +714,7 @@ Example:
714
714
partitionByComment: false,
715
715
partitionByNewLine: false,
716
716
newlinesBetween: 'ignore',
717
+ ignoreCallbackDependenciesPatterns: [],
717
718
groups: [
718
719
'index-signature',
719
720
['static-property', 'static-accessor-property'],
@@ -766,6 +767,7 @@ Example:
766
767
partitionByComment: false,
767
768
partitionByNewLine: false,
768
769
newlinesBetween: 'ignore',
770
+ ignoreCallbackDependenciesPatterns: [],
769
771
groups: [
770
772
'index-signature',
771
773
['static-property', 'static-accessor-property'],
0 commit comments