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
What would you like to be added: Would enhance the code structure and with proper vision of directory
Why is this needed: Code enhancement
Examples : Before: import MyComponent from '../../components/MyComponent'; import utils from '../utils';
After:
import MyComponent from 'components/MyComponent'; import utils from 'utils';
In may files we have followed relative imports , i would propose to use absolute imports
The text was updated successfully, but these errors were encountered:
Sorry, I don't get what you mean. Can you elaborate on it?
Sorry, something went wrong.
Updated pr description, please review it once.
Provide a code link? and explain the benefits a little bit?
No branches or pull requests
What would you like to be added:
Would enhance the code structure and with proper vision of directory
Why is this needed:
Code enhancement
Examples :
Before:
import MyComponent from '../../components/MyComponent';
import utils from '../utils';
After:
import MyComponent from 'components/MyComponent';
import utils from 'utils';
In may files we have followed relative imports , i would propose to use absolute imports
The text was updated successfully, but these errors were encountered: