We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My IDE likes to add /index to the import path when I specify some folder path with index.js file in it. For example:
/index
index.js
- module - index.js - file.js
// file.js import module from './module'
and it becomes
// file.js import module from './module/index'
Can we have a rule which disallows explicit specification of the index file?
index
The text was updated successfully, but these errors were encountered:
This seems like it'd be handled by #912 - since that could be shortened to ./module, it would warn.
./module
Sorry, something went wrong.
No branches or pull requests
My IDE likes to add
/index
to the import path when I specify some folder path withindex.js
file in it. For example:and it becomes
Can we have a rule which disallows explicit specification of the
index
file?The text was updated successfully, but these errors were encountered: