Skip to content
New issue

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

feat: force external dependencies to appear first #8

Open
bonustrack opened this issue Jan 29, 2023 · 0 comments
Open

feat: force external dependencies to appear first #8

bonustrack opened this issue Jan 29, 2023 · 0 comments

Comments

@bonustrack
Copy link
Member

We should have a rule to enforce that an external dependency appear before internal dependency, example:

Bad

import { Transaction as TransactionType } from '@/types';
import { useRouter } from 'vue-router';

Good

import { useRouter } from 'vue-router';
import { Transaction as TransactionType } from '@/types';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant