Skip to content

Commit

Permalink
feat(perfectionist): extend rule sort-named-imports
Browse files Browse the repository at this point in the history
- set `ignore-alias` option
  • Loading branch information
SimonGolms committed Oct 16, 2023
1 parent f2dd97c commit bb00813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ module.exports = {
"perfectionist/sort-jsx-props": ["error", { "ignore-case": true, type: "natural" }],
"perfectionist/sort-maps": ["error", { "ignore-case": true, type: "natural" }],
"perfectionist/sort-named-exports": ["error", { "ignore-case": true, type: "natural" }],
"perfectionist/sort-named-imports": ["error", { "ignore-case": true, type: "natural" }],
"perfectionist/sort-named-imports": ["error", { "ignore-alias": true, "ignore-case": true, type: "natural" }],
"perfectionist/sort-object-types": ["error", { "ignore-case": true, type: "natural" }],
"perfectionist/sort-objects": ["error", { "ignore-case": true, "partition-by-comment": true, type: "natural" }],
"perfectionist/sort-svelte-attributes": ["error", { "ignore-case": true, type: "natural" }],
Expand Down

0 comments on commit bb00813

Please sign in to comment.