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

Allow custom command to be excecuted for LSP, and run it by shell #1387

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Merge branch 'master' into custom-lsp-command
Tal Hadad committed May 20, 2024
commit 9bca67f7a2aba9e136310968e5d49a4f07eaac5f
15 changes: 11 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -298,10 +298,17 @@
"@types/node" "*"
form-data "^3.0.0"

"@types/node@*", "@types/node@^16.11.7":
version "16.11.47"
resolved "https://registry.npmjs.org/@types/node/-/node-16.11.47.tgz"
integrity sha512-fpP+jk2zJ4VW66+wAMFoBJlx1bxmBKx4DUFf68UHgdGCOuyUTDlLWqsaNPJh7xhNDykyJ9eIzAygilP/4WoN8g==
"@types/node@*":
version "15.12.2"
resolved "https://registry.npmjs.org/@types/node/-/node-15.12.2.tgz"
integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww==

"@types/node@^18.17.1":
version "18.19.33"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.33.tgz#98cd286a1b8a5e11aa06623210240bcc28e95c48"
integrity sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==
dependencies:
undici-types "~5.26.4"

"@types/qs@*":
version "6.9.6"

Unchanged files with check annotations Beta

return packages;
}
function parseCranJson(jsonString: string): Package[] {

Check warning on line 59 in src/helpViewer/cran.ts

GitHub Actions / eslint

'parseCranJson' is defined but never used
const lines = jsonString.split('\n').filter(v => v);
const pkgs = lines.map(line => {
const j = JSON.parse(line) as {[key: string]: string};
tables.each((tableIndex, table) => {
const rows = $('tr', table);
rows.each((rowIndex, row) => {
if (rowIndex === 0) return; // Skip the header row

Check warning on line 87 in src/helpViewer/cran.ts

GitHub Actions / eslint

Expected { after 'if' condition
const date = $(row).find('td:nth-child(1)').text().trim();
const href = $(row).find('td:nth-child(2) a').attr('href');
const url = href ? new URL(href, baseUrl).toString() : undefined;
You are viewing a condensed version of this merge commit. You can view the full changes here.