Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
d3c4731
hover is working for classes and members
isc-klu Apr 22, 2026
99c453e
clean up package(-lock).json and fix a type
isc-klu Apr 22, 2026
a3606d6
more touch on package-lock.json
isc-klu Apr 22, 2026
6268df5
go-to-definition
isc-klu Apr 23, 2026
0085f29
autocompletion
isc-klu Apr 23, 2026
3848603
signatureHelp
isc-klu Apr 24, 2026
16f0f05
Merge branch 'master' into local-intellisense
isc-klu Apr 24, 2026
a340c54
lint
isc-klu Apr 24, 2026
71d3674
mv comment
isc-klu Apr 24, 2026
ce84b58
lint and lint-fix
isc-klu Apr 24, 2026
5c06cf9
clean up
isc-klu Apr 24, 2026
c6546f3
rename
isc-klu May 4, 2026
e9ef646
deprecated
isc-klu May 4, 2026
f021f3a
dedup
isc-klu May 4, 2026
320123c
dedup
isc-klu May 4, 2026
853dcc1
rm dup
isc-klu May 4, 2026
391fcc0
provide doc w/o resolve when locally avaiable
isc-klu May 4, 2026
7b8ed8f
show diagnostics
isc-klu May 5, 2026
ac0df88
workspace diagnostics
isc-klu May 5, 2026
0838511
happy with diagnostics messages
isc-klu May 5, 2026
338b6b7
fix autocompletion drop downs
isc-klu May 5, 2026
e371d08
deprecated methods
isc-klu May 5, 2026
b957c33
simp diff
isc-klu May 5, 2026
b72edf8
complete command
isc-klu May 7, 2026
2e28a96
rename statement to command
isc-klu May 8, 2026
11fe249
workspace symbols
isc-klu May 8, 2026
103f0e3
documentSymbol
isc-klu May 8, 2026
01f0233
report type errors
isc-klu May 20, 2026
d4028ab
pretty type errors
isc-klu May 21, 2026
753f3d4
update
isc-klu May 21, 2026
56fe714
un-ignore wasm files
isc-klu May 28, 2026
1245087
fix diagnostics
isc-klu May 29, 2026
77a8953
fix autocompletion
isc-klu May 29, 2026
5e0597b
save progress
isc-klu Jun 1, 2026
cc168f9
clean up
isc-klu Jun 1, 2026
f5f2cb1
improve workspace handling; test and fix member reference
isc-klu Jun 2, 2026
d60f464
fix many problems
isc-klu Jun 16, 2026
0ab6cb4
avoid some error
isc-klu Jun 16, 2026
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
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ client/webpack.config.js
server/node_modules/**
server/src/**
server/webpack.config.js
server/lib/**
server/lib/*-isclexer.node
node_modules/**
images/*.gif
**/*.vsix
Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "language-server-client",
"author": "InterSystems Corporation",
"version": "2.8.4-SNAPSHOT",
"version": "2.9.0-LOCAL",
"private": true,
"engines": {
"vscode": "^1.93.0"
Expand All @@ -15,4 +15,4 @@
"@types/semver": "^7.7.0",
"@types/vscode": "1.93.0"
}
}
}
3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ export default tseslint.config(
{
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-control-regex": "off",
},
}
Expand Down
Loading