Skip to content

Commit 6d09750

Browse files
authored
Merge pull request #1890 from SUI-Components/match-all-adv-orgs
feat(packages/sui-lint): match all adv orgs
2 parents d2fdd80 + c11e168 commit 6d09750

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/sui-lint/eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ const IMPORT_SORT_GROUPS = [
149149
['^\\w'],
150150
// Generic organization packages.
151151
['^@'],
152-
// S-UI & ADV-UI organization packages.
153-
['^@s-ui', '^@adv-ui'],
152+
// SUI & ADV organization packages.
153+
['^@s-ui', '^@adv-'],
154154
// Relative imports. Put `./` last.
155155
['^\\.\\.(?!/?$)', '^\\.\\./?$', '^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
156156
// Style imports.

packages/sui-lint/eslintrc.ts.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ const IMPORT_SORT_GROUPS = [
120120
['^\\w'],
121121
// Generic organization packages.
122122
['^@'],
123-
// S-UI & ADV-UI organization packages.
124-
['^@s-ui', '^@adv-ui'],
123+
// SUI & ADV organization packages.
124+
['^@s-ui', '^@adv-'],
125125
// Relative imports. Put `./` last.
126126
['^\\.\\.(?!/?$)', '^\\.\\./?$', '^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
127127
// Style imports.

0 commit comments

Comments
 (0)