Skip to content

Commit

Permalink
fix(sort-imports): sort default internal pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-io committed Nov 19, 2024
1 parent 250a20e commit a4bfc2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/sort-imports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default createEslintRule<Options<string[]>, MESSAGE_ID>({
'unknown',
],
customGroups: { value: {}, type: {} },
internalPattern: ['^~/.*'],
internalPattern: ['^~/.+'],
partitionByComment: false,
partitionByNewLine: false,
newlinesBetween: 'always',
Expand Down Expand Up @@ -697,10 +697,10 @@ export default createEslintRule<Options<string[]>, MESSAGE_ID>({
'unknown',
],
customGroups: { value: {}, type: {} },
internalPattern: ['^~/.+'],
partitionByComment: false,
partitionByNewLine: false,
specialCharacters: 'keep',
internalPattern: ['~/**'],
newlinesBetween: 'always',
sortSideEffects: false,
type: 'alphabetical',
Expand Down

0 comments on commit a4bfc2b

Please sign in to comment.