We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f22dcb commit 45abe49Copy full SHA for 45abe49
packages/eslint-config-recommended/src/index.ts
@@ -217,7 +217,7 @@ export function defineScTsConfig(...configs: Parameters<typeof defineConfig>): R
217
rules: {
218
'import/no-deprecated': 'error',
219
'import/no-extraneous-dependencies': 'error',
220
- 'import/no-internal-modules': 'error',
+ 'import/no-internal-modules': ['error', { allow: ['aws-cdk-lib/*', '@aws-cdk/*'] }],
221
222
// no-unused-vars does not support a fixer for "unused imports" which is highly shitty.
223
// therefore we use another plugin "unused-imports" which can splits up the unused-vars rule into two rules
0 commit comments