i am trying to import modules inside nodejs routes file using the "node-module-alias".
My code structure is as follows,
.
├── src
├──utils
├── logger
when i try to commit the code, eslint fails with below error message.
2:30 error "src" is extraneous node/no-extraneous-import
my import code in the file is as follows,
```import Logger from 'src/utils/logger';````
I was able to fix the issue by adding a line in .eslintrc file
'node/no-extraneous-import': 'off',
But I dont want to modify the eslintrc file, and fix the issue. Any help would be appreciated. Thanks.