chore: update dependencies and improve code consistency - #3338
Open
Dmitrii Shilov (bk201-) wants to merge 7 commits into
Open
chore: update dependencies and improve code consistency#3338Dmitrii Shilov (bk201-) wants to merge 7 commits into
Dmitrii Shilov (bk201-) wants to merge 7 commits into
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
✅ Build (Compile, Lint, Prettier, l10n, Package)🧱 Step Results
📥 Artifacts (run) |
Contributor
🔬 NoSQL language-service integration🧪 Result
📥 Artifacts (run)
|
Contributor
Code Coverage OverviewLanguages: TypeScript TypeScript / code-coverage/vitestThe overall line coverage in commit 4955391 in the Show a line coverage summary of the most impacted files.
Updated |
Contributor
🧪 Tests (Unit + Integration)🧪 Results
📈 Coverage |
Contributor
🎭 E2E Tests (Playwright + VS Code)🧪 Result
📥 Artifacts (run)
|
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
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.
This pull request makes extensive updates to the project's linting setup by removing ESLint in favor of a custom Oxlint plugin, updating dependencies, and refining VS Code configurations. The main goals are to streamline linting, enforce consistent code quality rules, and keep dependencies up to date. Additionally, it introduces minor improvements and bug fixes in language service error handling.
Linting and Tooling Overhaul
.oxlint-plugin.mjs). This plugin enforces license headers, import restrictions, and l10n usage conventions, and is integrated via.oxlintrc.jsonc. (eslint.config.mjsremoved,.oxlintrc.jsonc,.oxlint-plugin.mjs,package.json,.vscode/settings.json,.vscode/tasks.json,.vscode/extensions.json) [1] [2] [3] [4] [5] [6] [7] [8].vscode/settings.json) [1] [2].vscode/tasks.json)Dependency and Engine Updates
.nvmrc,package.json,packages/nosql-language-service/package.json) [1] [2] [3] [4] [5]Custom Oxlint Plugin Implementation
.oxlint-plugin.mjswith rules for:@vscode/l10ninstead ofvscode.l10n. (.oxlint-plugin.mjs).oxlintrc.jsoncto use the new plugin and rules, removing the old ESLint plugin and configuration. (.oxlintrc.jsonc) [1] [2]Other Improvements and Fixes
l10n/bundle.l10n.json)packages/nosql-language-service/src/errors/SqlError.test.ts)These changes modernize the development workflow, ensure code quality through more robust linting, and keep the project up to date with the latest dependencies and tooling.