You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/order.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ This rule supports the following options:
77
77
78
78
### `groups: [array]`:
79
79
80
-
How groups are defined, and the order to respect. `groups` must be an array of `string` or [`string`]. The only allowed `string`s are: `"builtin"`, `"external"`, `"internal"`, `"parent"`, `"sibling"`, `"index"`. The enforced order is the same as the order of each element in a group. Omitted types are implicitly grouped together as the last element. Example:
80
+
How groups are defined, and the order to respect. `groups` must be an array of `string` or [`string`]. The only allowed `string`s are: `"builtin"`, `"external"`, `"internal"`, `"unknown"`, `"parent"`, `"sibling"`, `"index"`. The enforced order is the same as the order of each element in a group. Omitted types are implicitly grouped together as the last element. Example:
81
81
```js
82
82
[
83
83
'builtin', // Built-in types are first
@@ -86,7 +86,7 @@ How groups are defined, and the order to respect. `groups` must be an array of `
86
86
// Then the rest: internal and external type
87
87
]
88
88
```
89
-
The default value is `["builtin", "external", "parent", "sibling", "index"]`.
89
+
The default value is `["builtin", "external", "unknown", "parent", "sibling", "index"]`.
0 commit comments