Skip to content

Commit 1276608

Browse files
committed
Update dependencies
1 parent afcfb16 commit 1276608

File tree

5 files changed

+930
-829
lines changed

5 files changed

+930
-829
lines changed

.github/workflows/nodejs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
15-
node-version: [20.x, 22.x]
16-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1715

1816
steps:
1917
- uses: actions/checkout@v4

eslint.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ import importPlugin from "eslint-plugin-import";
66
export default tseslint.config(
77
...tseslint.configs.recommendedTypeChecked,
88
...tseslint.configs.stylisticTypeChecked,
9-
importPlugin.flatConfigs.recommended, // eslint-disable-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
9+
importPlugin.flatConfigs.recommended,
1010
stylistic.configs.customize({
1111
arrowParens: true,
1212
braceStyle: "1tbs",
1313
commaDangle: "never",
14-
flat: true,
1514
jsx: false,
1615
quotes: "double",
1716
semi: true

language-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"main": "./src/server.js",
77
"scripts": {
88
"lint": "eslint src",
9-
"test": "vitest --watch=false",
9+
"test": "vitest run",
1010
"coverage": "vitest run --coverage",
1111
"type-check": "tsc --noEmit"
1212
},

0 commit comments

Comments
 (0)