Open LeLunZ opened 6 months ago
no-useless-path-segments can only check relative filesystem paths. There's no good way to be sure what aliases might be doing and how they can be altered in a reliable way, that I can think of.
WebStorm's suggestions could be made as eslint rule suggestions, but not as an autofix. Additionally, that'd be a rule option that only applied when using TS, so I'm not sure it's a good fit for this plugin.
Does the TS-eslint plugin not have a rule that can cover this?
Hey.
I am currently working on an nx project. Where in the tsconfig something like that is configured:
Then in the code somewhere in the project there is an import like:
Which could be shortened to
I guess I want something similar to what my IDE is doing. Currently my IDE (WebStorm) shows a suggestion like that, but I guess thats WebStorm specific. And I can't run eslint --fix to do that:
Is that already possible with a eslint rule or is that a possible improvement to this package? (I guess it would fit into import/no-useless-path-segments)