Skip to content

Bump @types/vscode from 1.87.0 to 1.88.0 #543

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 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -252,9 +252,9 @@
integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==

"@types/vscode@^1.68.0":
version "1.87.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.87.0.tgz#ee9b163f3d2115fb0b20619b34dd3abc5a923361"
integrity sha512-y3yYJV2esWr8LNjp3VNbSMWG7Y43jC8pCldG8YwiHGAQbsymkkMMt0aDT1xZIOFM2eFcNiUc+dJMx1+Z0UT8fg==
version "1.88.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.88.0.tgz#2dc690237f7ef049942508c8609b6b9f5216b4d3"
integrity sha512-rWY+Bs6j/f1lvr8jqZTyp5arRMfovdxolcqGi+//+cPDOh8SBvzXH90e7BiSXct5HJ9HGW6jATchbRTpTJpEkw==

"@typescript-eslint/eslint-plugin@^5.47.0":
version "5.62.0"

Unchanged files with check annotations Beta

const testsRoot = path.resolve(__dirname, "..");
return new Promise((c, e) => {
glob("**/**.test.js", { cwd: testsRoot }, (err, files) => {

Check failure on line 20 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

This expression is not callable.

Check failure on line 20 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

Parameter 'err' implicitly has an 'any' type.

Check failure on line 20 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

Parameter 'files' implicitly has an 'any' type.

Check failure on line 20 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

This expression is not callable.

Check failure on line 20 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

Parameter 'err' implicitly has an 'any' type.

Check failure on line 20 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

Parameter 'files' implicitly has an 'any' type.
if (err) {
return e(err);
}
// Add files to the test suite
files.forEach(f => mocha.addFile(path.resolve(testsRoot, f)));

Check failure on line 26 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

Parameter 'f' implicitly has an 'any' type.

Check failure on line 26 in src/test/suite/index.ts

GitHub Actions / Run Tests (ubuntu-latest, 3.1)

Parameter 'f' implicitly has an 'any' type.
try {
// Run the mocha test