Skip to content

Commit

Permalink
Merge pull request #20 from Boehringer-Ingelheim/feature/eslint-plugi…
Browse files Browse the repository at this point in the history
…n-perfectionist-refinement

feat(perfectionist): extend rule `sort-named-imports`
  • Loading branch information
SimonGolms authored Oct 16, 2023
2 parents f2dd97c + bb00813 commit 23223e0
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 23223e0

Please sign in to comment.