Skip to content

Commit

Permalink
Merge pull request #1890 from SUI-Components/match-all-adv-orgs
Browse files Browse the repository at this point in the history
feat(packages/sui-lint): match all adv orgs
  • Loading branch information
kikoruiz authored Jan 13, 2025
2 parents d2fdd80 + c11e168 commit 6d09750
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/sui-lint/eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ const IMPORT_SORT_GROUPS = [
['^\\w'],
// Generic organization packages.
['^@'],
// S-UI & ADV-UI organization packages.
['^@s-ui', '^@adv-ui'],
// SUI & ADV organization packages.
['^@s-ui', '^@adv-'],
// Relative imports. Put `./` last.
['^\\.\\.(?!/?$)', '^\\.\\./?$', '^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
// Style imports.
Expand Down
4 changes: 2 additions & 2 deletions packages/sui-lint/eslintrc.ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ const IMPORT_SORT_GROUPS = [
['^\\w'],
// Generic organization packages.
['^@'],
// S-UI & ADV-UI organization packages.
['^@s-ui', '^@adv-ui'],
// SUI & ADV organization packages.
['^@s-ui', '^@adv-'],
// Relative imports. Put `./` last.
['^\\.\\.(?!/?$)', '^\\.\\./?$', '^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
// Style imports.
Expand Down

0 comments on commit 6d09750

Please sign in to comment.