Skip to content

Commit fb4ef98

Browse files
committed
chore: treat @nbw/** imports as internal
1 parent ba1b7b1 commit fb4ef98

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

eslint.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ export default defineConfig(
8686
'object',
8787
'unknown',
8888
],
89-
pathGroups: [{ pattern: '@/**', group: 'internal' }],
89+
pathGroups: [
90+
{ pattern: '@/**', group: 'internal' },
91+
{ pattern: '@nbw/**', group: 'internal' },
92+
],
9093
pathGroupsExcludedImportTypes: ['builtin'],
9194
'newlines-between': 'always',
9295
alphabetize: { order: 'asc', caseInsensitive: true },

0 commit comments

Comments
 (0)