Skip to content

Commit 950db4e

Browse files
hugop95azat-io
authored andcommittedNov 19, 2024
feat: add sort-modules rule
1 parent c8d2db7 commit 950db4e

25 files changed

+5165
-317
lines changed
 

‎docs/content/rules/sort-classes.mdx

+5-3
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ Current API:
576576
</Important>
577577

578578
<sub>
579-
type: `Array<CustomGroupDefinition | CustomGroupBlockDefinition>`
579+
type: `Array<CustomGroupDefinition | CustomGroupAnyOfDefinition>`
580580
</sub>
581581
<sub>default: `[]`</sub>
582582

@@ -601,7 +601,7 @@ A class member will match a `CustomGroupDefinition` group if it matches all the
601601
or:
602602

603603
```ts
604-
interface CustomGroupBlockDefinition {
604+
interface CustomGroupAnyOfDefinition {
605605
groupName: string
606606
type?: 'alphabetical' | 'natural' | 'line-length' | 'unsorted'
607607
order?: 'asc' | 'desc'
@@ -615,7 +615,7 @@ interface CustomGroupBlockDefinition {
615615
}
616616
```
617617

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.
619619

620620
#### Attributes
621621

@@ -714,6 +714,7 @@ Example:
714714
partitionByComment: false,
715715
partitionByNewLine: false,
716716
newlinesBetween: 'ignore',
717+
ignoreCallbackDependenciesPatterns: [],
717718
groups: [
718719
'index-signature',
719720
['static-property', 'static-accessor-property'],
@@ -766,6 +767,7 @@ Example:
766767
partitionByComment: false,
767768
partitionByNewLine: false,
768769
newlinesBetween: 'ignore',
770+
ignoreCallbackDependenciesPatterns: [],
769771
groups: [
770772
'index-signature',
771773
['static-property', 'static-accessor-property'],

0 commit comments

Comments
 (0)