Skip to content

Commit

Permalink
Remove SQL content assist
Browse files Browse the repository at this point in the history
Signed-off-by: Liam Barry Allan <[email protected]>
  • Loading branch information
worksofliam committed Oct 26, 2022
1 parent 1d5a26a commit 9512c6f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 265 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.0.0",
"csv": "^6.1.3",
"node-sql-parser": "^4.1.1",
"sql-formatter": "^4.0.2"
}
}
2 changes: 0 additions & 2 deletions src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const vscode = require(`vscode`);
const schemaBrowser = require(`./views/schemaBrowser`);

const JSONServices = require(`./language/json`);
const languageProvider = require(`./language/provider`);
const resultsProvider = require(`./language/results`);

// this method is called when your extension is activated
Expand All @@ -27,7 +26,6 @@ function activate(context) {
);

JSONServices.initialise(context);
languageProvider.initialise(context);
resultsProvider.initialise(context);
}

Expand Down
261 changes: 0 additions & 261 deletions src/language/provider.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/language/results/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ exports.getLoadingHTML = () => {
* @returns {string}
*/
exports.generateScroller = (basicSelect) => {
return /*html*/ `
return /*html*/`
<!DOCTYPE html>
<html lang="en">
<head>
Expand Down

0 comments on commit 9512c6f

Please sign in to comment.