Skip to content

Commit

Permalink
fix: Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mskelton committed Mar 11, 2023
1 parent 4a981d5 commit 2547bc6
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
10 changes: 5 additions & 5 deletions docs/rules/destructuring-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ let { a: b, b: a } = {}
}
```

- `caseSensitive` - if `true`, enforce properties to be in case-sensitive order.
Default is `false`.
- `natural` - if `true`, enforce properties to be in natural order. Default is
`true`. Natural Order compares strings containing combination of letters and
- `caseSensitive` (default `false`) - if `true`, enforce properties to be in
case-sensitive order.
- `natural` (default `true`) - if `true`, enforce properties to be in natural
order. Natural order compares strings containing combination of letters and
numbers in the way a human being would sort. It basically sorts numerically,
instead of sorting alphabetically. So the number 10 comes after the number 3
in Natural Sorting.
in natural sorting.

## When Not To Use It

Expand Down
10 changes: 5 additions & 5 deletions docs/rules/export-members.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ export { a as b, b as a } from "a"
}
```

- `caseSensitive` - if `true`, enforce properties to be in case-sensitive order.
Default is `false`.
- `natural` - if `true`, enforce properties to be in natural order. Default is
`true`. Natural Order compares strings containing combination of letters and
- `caseSensitive` (default `false`) - if `true`, enforce properties to be in
case-sensitive order.
- `natural` (default `true`) - if `true`, enforce properties to be in natural
order. Natural order compares strings containing combination of letters and
numbers in the way a human being would sort. It basically sorts numerically,
instead of sorting alphabetically. So the number 10 comes after the number 3
in Natural Sorting.
in natural sorting.

## When Not To Use It

Expand Down
10 changes: 5 additions & 5 deletions docs/rules/import-members.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ import { a as b, b as a } from "a"
}
```

- `caseSensitive` - if `true`, enforce properties to be in case-sensitive order.
Default is `false`.
- `natural` - if `true`, enforce properties to be in natural order. Default is
`true`. Natural Order compares strings containing combination of letters and
- `caseSensitive` (default `false`) - if `true`, enforce properties to be in
case-sensitive order.
- `natural` (default `true`) - if `true`, enforce properties to be in natural
order. Natural order compares strings containing combination of letters and
numbers in the way a human being would sort. It basically sorts numerically,
instead of sorting alphabetically. So the number 10 comes after the number 3
in Natural Sorting.
in natural sorting.

## When Not To Use It

Expand Down
10 changes: 5 additions & 5 deletions docs/rules/object-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ var a = { b: { x: 1, y: 2 }, C: 1 }
}
```

- `caseSensitive` - if `true`, enforce properties to be in case-sensitive order.
Default is `false`.
- `natural` - if `true`, enforce properties to be in natural order. Default is
`true`. Natural Order compares strings containing combination of letters and
- `caseSensitive` (default `false`) - if `true`, enforce properties to be in
case-sensitive order.
- `natural` (default `true`) - if `true`, enforce properties to be in natural
order. Natural order compares strings containing combination of letters and
numbers in the way a human being would sort. It basically sorts numerically,
instead of sorting alphabetically. So the number 10 comes after the number 3
in Natural Sorting.
in natural sorting.

## When Not To Use It

Expand Down
10 changes: 5 additions & 5 deletions docs/rules/type-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ type A = {
}
```
- `caseSensitive` - if `true`, enforce properties to be in case-sensitive order.
Default is `false`.
- `natural` - if `true`, enforce properties to be in natural order. Default is
`true`. Natural Order compares strings containing combination of letters and
- `caseSensitive` (default `false`) - if `true`, enforce properties to be in
case-sensitive order.
- `natural` (default `true`) - if `true`, enforce properties to be in natural
order. Natural order compares strings containing combination of letters and
numbers in the way a human being would sort. It basically sorts numerically,
instead of sorting alphabetically. So the number 10 comes after the number 3
in Natural Sorting.
in natural sorting.
## When Not To Use It
Expand Down

0 comments on commit 2547bc6

Please sign in to comment.