-
-
Notifications
You must be signed in to change notification settings - Fork 8
refactor: streamline eslint config #24
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Update ESLint and related dependencies to latest versions - Replace deprecated `vueTsEslintConfig` with `defineConfigWithVueTs` and `vueTsConfigs` - Migrate deprecated stylistic rules to `@stylistic` plugin
It seems to be good to adopt eslint to the repo itself
Add pnpm and reorganize yarn/npm commands for clarity and completeness
The `eslint-plugin-import`, `eslint-plugin-node`, and `eslint-plugin-promise` plugins were removed from the dependencies as they are no longer used in the project.
19257c0
to
716a040
Compare
This commit adds the '@stylistic/indent' rule to enforce consistent indentation of 2 spaces, improving code readability and maintaining style consistency across the codebase. fix: off indent rule inside vue files
chore: remove debug file from distribution
dc32a14
to
63d4c0e
Compare
6ef23ee
to
ffc7b13
Compare
johnleider
approved these changes
Mar 27, 2025
Move '@vue/eslint-config-typescript' from devDependencies to dependencies and add '@eslint/js' to dependencies. This ensures all necessary packages are available in production and aligns with the project's peerDependencies.
1e5ad73
to
31c2c29
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
After this PR we will have latest versions of eslint and related dependencies.
Honorable mentions:
no-return-await
is removed