Skip to content

Commit

Permalink
fix sort-imports doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gwBear1 committed Mar 13, 2024
1 parent 29c3595 commit f5ee4b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/rules/sort-imports.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,12 @@ import {b, a, c} from 'foo.js'

When `true` the rule ignores the case-sensitivity of the imports local name.

Examples of **incorrect** code for this rule with the `{ "ignoreCase": true }` option:
Examples of **incorrect** code for this rule with the `{ "ignoreCase": false }` option:

::: incorrect

```js
/*eslint sort-imports: ["error", { "ignoreCase": true }]*/
/*eslint sort-imports: ["error", { "ignoreCase": false }]*/

import B from 'foo.js';
import a from 'bar.js';
Expand Down

0 comments on commit f5ee4b3

Please sign in to comment.