You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
The config above without eslint-config-airbnb-typescript only shows error when I'm importing a not specified submodule.
import { Component } from @angular/core; // works
import * from @angular/localize/init; // error as expected
import { Test } from './test-helper' // works
import { TestParent } from '../parent-test-helper' // works
But as soon as I use eslint-config-airbnb-typescript this is the result:
import { Component } from @angular/core; // works
import * from @angular/localize/init; // error as expected
import { Test } from './test-helper' // error but should work
import { TestParent } from '../parent-test-helper' // error but should work
I've also tried to add patterns to mitigate this but this also did nothing for me:
As soon as I use this package with an active
import/no-internal-modules
configuration I'm getting warn/error messages for relative path imports.The config above without
eslint-config-airbnb-typescript
only shows error when I'm importing a not specified submodule.But as soon as I use
eslint-config-airbnb-typescript
this is the result:I've also tried to add patterns to mitigate this but this also did nothing for me:
The text was updated successfully, but these errors were encountered: