Skip to content

Commit 0379fc3

Browse files
committed
no linter, yet
1 parent a8423d6 commit 0379fc3

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

intersystems-iris-native/package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "intersystems-iris-native",
3+
"version": "1.0.0",
4+
"description": "InterSystems IRIS Native API for Node.js",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"files": [
10+
"bin"
11+
],
12+
"author": "",
13+
"repository": "",
14+
"license" : "Commercial License available from InterSystems"
15+
}
16+

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@
44
"description": "SQLTools Driver for InterSystems IRIS",
55
"version": "0.0.1",
66
"engines": {
7-
"vscode": "^1.42.0"
7+
"vscode": "^1.46.0"
88
},
9-
"publisher": "intersystems",
9+
"publisher": "intersystems-community",
1010
"license": "MIT",
1111
"repository": {},
1212
"bugs": {},
1313
"scripts": {
1414
"vscode:prepublish": "npm run compile",
1515
"compile": "tsc -p ./",
16-
"watch": "tsc -watch -p ./"
16+
"watch": "tsc -watch -p ./",
17+
"package": "vsce package -o sqltools-intersystems-driver.vsix",
18+
"lint": ""
1719
},
1820
"keywords": [
1921
"intersystems-iris-driver",

src/ls/driver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export default class IRISDriver extends AbstractDriver<IRISdb, DriverOptions> im
133133
/**
134134
* This method is a helper for intellisense and quick picks.
135135
*/
136-
public async searchItems(itemType: ContextValue, search: string, _extraParams: any = {}): Promise<NSDatabase.SearchableItem[]> {
136+
public async searchItems(itemType: ContextValue, _search: string, _extraParams: any = {}): Promise<NSDatabase.SearchableItem[]> {
137137
switch (itemType) {
138138
case ContextValue.TABLE:
139139
case ContextValue.VIEW:

0 commit comments

Comments
 (0)