Skip to content

Commit

Permalink
no linter, yet
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Jul 6, 2020
1 parent a8423d6 commit 0379fc3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
16 changes: 16 additions & 0 deletions intersystems-iris-native/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "intersystems-iris-native",
"version": "1.0.0",
"description": "InterSystems IRIS Native API for Node.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"bin"
],
"author": "",
"repository": "",
"license" : "Commercial License available from InterSystems"
}

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
"description": "SQLTools Driver for InterSystems IRIS",
"version": "0.0.1",
"engines": {
"vscode": "^1.42.0"
"vscode": "^1.46.0"
},
"publisher": "intersystems",
"publisher": "intersystems-community",
"license": "MIT",
"repository": {},
"bugs": {},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
"watch": "tsc -watch -p ./",
"package": "vsce package -o sqltools-intersystems-driver.vsix",
"lint": ""
},
"keywords": [
"intersystems-iris-driver",
Expand Down
2 changes: 1 addition & 1 deletion src/ls/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default class IRISDriver extends AbstractDriver<IRISdb, DriverOptions> im
/**
* This method is a helper for intellisense and quick picks.
*/
public async searchItems(itemType: ContextValue, search: string, _extraParams: any = {}): Promise<NSDatabase.SearchableItem[]> {
public async searchItems(itemType: ContextValue, _search: string, _extraParams: any = {}): Promise<NSDatabase.SearchableItem[]> {
switch (itemType) {
case ContextValue.TABLE:
case ContextValue.VIEW:
Expand Down

0 comments on commit 0379fc3

Please sign in to comment.