vscode-mssql/package.json

783 строки
24 KiB
JSON
Исходник Обычный вид История

2016-06-26 21:49:47 +03:00
{
"name": "mssql",
"displayName": "SQL Server (mssql)",
"version": "1.7.0",
"description": "Develop Microsoft SQL Server, Azure SQL Database and SQL Data Warehouse everywhere",
"publisher": "ms-mssql",
"preview": false,
2016-07-14 02:25:29 +03:00
"license": "SEE LICENSE IN LICENSE.txt",
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
2016-06-26 21:49:47 +03:00
"icon": "images/sqlserver.png",
"galleryBanner": {
"color": "#2F2F2F",
"theme": "dark"
2016-06-26 21:49:47 +03:00
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-mssql.git"
2016-06-26 21:49:47 +03:00
},
"bugs": {
2016-07-19 03:15:30 +03:00
"url": "https://github.com/Microsoft/vscode-mssql/issues"
2016-07-14 02:25:29 +03:00
},
"homepage": "https://github.com/Microsoft/vscode-mssql/blob/master/README.md",
2016-06-26 21:49:47 +03:00
"engines": {
"vscode": "^1.33.0"
2016-06-26 21:49:47 +03:00
},
"categories": [
"Programming Languages",
"Azure"
2016-06-26 21:49:47 +03:00
],
"keywords": [
2016-07-14 02:25:29 +03:00
"SQL",
"MSSQL",
2016-07-14 02:25:29 +03:00
"SQL Server",
"Azure SQL Database",
"Azure SQL Data Warehouse",
"multi-root ready"
2016-07-14 02:25:29 +03:00
],
"activationEvents": [
"onView:objectExplorer",
"onLanguage:sql",
"onCommand:extension.connect",
"onCommand:extension.runQuery",
"onCommand:extension.runCurrentStatement",
"onCommand:extension.disconnect",
"onCommand:extension.manageProfiles",
"onCommand:extension.chooseDatabase",
"onCommand:extension.cancelQuery",
"onCommand:extension.showGettingStarted",
"onCommand:extension.newQuery",
"onCommand:extension.rebuildIntelliSenseCache",
"onCommand:extension.addObjectExplorer",
"onCommand:extension.objectExplorerNewQuery",
"onCommand:extension.toggleSqlCmd",
"onCommand:mssql.loadCompletionExtension"
2016-06-26 21:49:47 +03:00
],
"main": "./out/src/extension",
"extensionDependencies": [
"vscode.sql"
],
"devDependencies": {
"@types/ejs": "^2.6.3",
"@types/mocha": "^5.2.7",
"@types/tmp": "0.0.28",
"@types/underscore": "1.8.3",
"assert": "^1.4.1",
"chai": "^3.5.0",
"copy-paste": "^1.3.0",
2016-12-06 05:13:15 +03:00
"coveralls": "^2.11.15",
Support code coverage for our VSCode extension. (#273) - Included a new launch config that supports running with code coverage. - Coverage is stored in a coverage folder as both LCOV file and HTML report (in sub folder) - Added new scripts in our build machine to run with code coverage. Will enable a run that uses code coverage once this is merged - To view code coverage while developing, install the LCOV VSCode extension, enable it and then hit F1 -> LCOV Menu -> Enable Decorations. This will highlight covered / missed lines in green and red. Note: The HTMLContent codebase is not currently covered. With recent changes to minify this it breaks the remapping tool we use. Detailed notes - Coverage uses a config file to load settings. This is copied at the start of each task - If tests fail, the process exit code will be 1. We should still write out code coverage in these cases as this is a useful detail even on runs with some test failures. - On Windows, the extension is loaded (pulling in all source files via require) before the test runner is configured. Since instrumentation happens by hooking the require call, this meant that instrumentation never happened on Windows. To resolve this, we invalidate the Module cache for our source files so they are reloaded the next time anything requires them. At this point they are instrumented as expected. There is a minor risk to this if we had some global state or deeper integration test, but this doesn't impact any existing unit tests and is needed to unblock code coverage * Skip coverage of HTMLContent due to crash - With the latest HTMLContent changes to minify & uglify the code, the remap-istanbul component responsible for js -> ts remapping crashes trying to parse the sourceMap entries in the file. This is due to lack of whitespace between code which it expects - basically, it's not set up to run against such compact code - Disabling coverage of this part of the code until this issue is resolved
2016-11-07 23:56:10 +03:00
"decache": "^4.1.0",
"del": "^2.2.1",
"gulp": "github:gulpjs/gulp#v4.0.0",
"gulp-clean-css": "^2.0.13",
"gulp-concat": "^2.6.0",
"gulp-filter": "^5.0.0",
"gulp-install": "^0.6.0",
"gulp-istanbul-report": "0.0.1",
"gulp-json-editor": "^2.2.1",
Merge from master (#763) * SqlToolsService 0.3.0 release target * Copy should not add new line at end (#717) - Fixes #715. Should not copy & paste with newline at the end since this overwrites cells in Excel * Telemetry fix: promise.all not receiving promises (#723) - Promise.all requires either an array of PromiseLike objects or objects of type T. A change when upgrading to Typescript 2.1.5 caused us to pass in the functions, rather than the promises returned by those functions as previously happened. This meant that Promises.all returned immediately as it thought it was returning an array of functions. - Fix is to explicitly define the promise return types, and go back to calling the methods so that we get promises back to wait on. * SqlToolsService update to 0.3.0.1 * Target Download Center for 0.3.0 release * Fixing regression where null cells are copied as blank strings (#736) - Fixes #734, a regression where null cells are copied as blank strings - To fix checksum issue on installing chrome for unit testing, now ignoring checksums * SqlToolsService 0.3.0.2 Update * Fix CI test runs broken by gulp-remote-src (#743) - gulp-remote-src v0.4.2 breaks the vscode test runner due to https://github.com/ddliu/gulp-remote-src/issues/11. This fixes the issue for us by explicitly binding to 0.4.1 which still works * Fix #711 MSSQL Extension will not run (#744) - Fixes #711 MSSQL Extension will not run - Update GetWindowsArchitecture to use new, simpler and more reliable method taken from the Omnisharp-VSCode implementation - Fixed issues where we were not returning promises as expected, and where we were accessing the _connectionManager even though it was not defined yet, since the extension was still initializing. This will help with overall reliability - Added test to verify handling of null ConnectionManager * SqlToolsService 0.3.0.4 * SqlToolsService 0.3.0.5 * Fix changelog open broken by VSCode 1.10.0 (#750) - Opening a local file in the HTML Preview pan is broken in 1.10. It looks like this is a bug in VSCode that isn't in the Insiders build - Moving to opening the Master changelog.md in the users default browser instead. This is consistent with our GettingStarted action. * Fix dates in changelog * SqlToolsService 0.3.0-alpha.14
2017-03-07 04:50:47 +03:00
"gulp-remote-src": "0.4.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.5.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^3.1.4",
"gulp-uglify": "^2.0.0",
"istanbul": "^0.4.5",
"jasmine-core": "~2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.1.0",
"karma-remap-istanbul": "^0.2.1",
2016-08-20 02:38:35 +03:00
"pm-mocha-jenkins-reporter": "^0.2.6",
"remap-istanbul": "^0.6.4",
"rxjs": "5.0.0-beta.12",
"systemjs-builder": "^0.15.32",
"tslint": "^5.16.0",
"tslint-microsoft-contrib": "^5.2.0",
"typemoq": "^1.7.0",
"typescript": "3.5.3",
"uglify-js": "mishoo/UglifyJS2#harmony-v2.8.22",
"vsce": "^1.58.0",
"vscode": "^1.1.33",
"vscode-nls-dev": "https://github.com/Raymondd/vscode-nls-dev/releases/download/2.0.2/build.tar.gz",
"xmldom": "^0.1.27",
"yargs": "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"
2016-07-14 02:25:29 +03:00
},
2016-06-26 21:49:47 +03:00
"dependencies": {
"@angular/common": "~2.1.2",
"@angular/compiler": "~2.1.2",
"@angular/core": "~2.1.2",
"@angular/forms": "~2.1.2",
"@angular/http": "~2.1.2",
"@angular/platform-browser": "~2.1.2",
"@angular/platform-browser-dynamic": "~2.1.2",
"@angular/router": "~3.1.2",
"@angular/upgrade": "~2.1.2",
"@types/jquery": "^3.3.31",
"@types/jqueryui": "^1.12.7",
"angular-in-memory-web-api": "0.1.13",
"angular2-slickgrid": "github:microsoft/angular2-slickgrid#1.2.2-patch1",
"applicationinsights": "^1.0.8",
"body-parser": "^1.15.2",
"comment-json": "^1.1.3",
"core-js": "^2.4.1",
"decompress": "^4.0.0",
"ejs": "^2.6.2",
2016-08-20 04:38:56 +03:00
"error-ex": "^1.3.0",
2016-07-14 02:25:29 +03:00
"express": "^4.13.3",
2016-08-20 04:38:56 +03:00
"figures": "^1.4.0",
"fs-extra-promise": "^0.3.1",
"getmac": "1.2.1",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.1",
"jquery": "^3.4.1",
"jsonc-parser": "^1.0.0",
"moment": "^2.15.1",
"opener": "1.4.2",
"plist": "^2.1.0",
"pretty-data": "^0.40.0",
"rangy": "^1.3.0",
"reflect-metadata": "0.1.12",
"request": "^2.73.0",
"rxjs": "5.0.0-beta.12",
"semver": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz",
"slickgrid": "github:anthonydresser/SlickGrid#2.3.23-2",
"systemjs": "0.19.40",
"systemjs-plugin-json": "^0.2.0",
"tmp": "^0.0.28",
"underscore": "^1.8.3",
"vscode-extension-telemetry": "^0.1.1",
"vscode-languageclient": "5.2.1",
"vscode-nls": "^2.0.2",
"ws": ">=3.3.1",
"zone.js": "^0.6.26"
2016-06-26 21:49:47 +03:00
},
2016-07-14 02:25:29 +03:00
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "objectExplorer",
"title": "SQL Server",
"icon": "./images/server_page_inverse.svg"
}
]
},
"views": {
"objectExplorer": [
{
"id": "objectExplorer",
"name": "%extension.connections%",
"when": "enablePreviewFeatures"
}
]
},
2016-06-26 21:49:47 +03:00
"languages": [
{
"id": "sql",
"extensions": [
".sql"
],
"aliases": [
"SQL"
],
"configuration": "./syntaxes/sql.configuration.json"
}
],
"grammars": [
{
"language": "sql",
"scopeName": "source.sql",
"path": "./syntaxes/SQL.plist"
}
],
"snippets": [
{
"language": "sql",
"path": "./snippets/mssql.json"
}
],
"menus": {
"editor/context": [
{
"command": "extension.runQuery",
"when": "editorLangId == sql"
}
],
"view/title": [
{
"command": "extension.addObjectExplorer",
"title": "%extension.addObjectExplorer%",
"group": "navigation",
"when": "enablePreviewFeatures"
}
],
"view/item/context": [
{
"command": "extension.objectExplorerNewQuery",
"when": "enablePreviewFeatures && viewItem =~ /^(disconnectedServer|Server|Database|Table)$/",
"group": "MS_SQL@1"
},
{
"command": "extension.removeObjectExplorerNode",
"when": "enablePreviewFeatures && viewItem =~ /^(disconnectedServer|Server)$/",
"group": "MS_SQL@3"
},
{
"command": "extension.refreshObjectExplorerNode",
"when": "enablePreviewFeatures && view == objectExplorer",
"group": "MS_SQL@2"
},
{
"command": "extension.disconnectObjectExplorerNode",
"when": "enablePreviewFeatures && viewItem == Server",
"group": "MS_SQL@4"
},
{
"command": "extension.scriptSelect",
"when": "enablePreviewFeatures && viewItem == Table"
}
],
"commandPalette": [
{
"command": "extension.objectExplorerNewQuery",
"when": "enablePreviewFeatures && view == objectExplorer"
},
{
"command": "extension.removeObjectExplorerNode",
"when": "enablePreviewFeatures && viewItem != null"
},
{
"command": "extension.refreshObjectExplorerNode",
"when": "enablePreviewFeatures && viewItem != null"
},
{
"command": "extension.scriptSelect",
"when": "enablePreviewFeatures && viewItem == Table"
},
{
"command": "extension.disconnectObjectExplorerNode",
"when": "enablePreviewFeatures && viewItem != null"
}
]
},
2016-06-26 21:49:47 +03:00
"commands": [
{
"command": "extension.runQuery",
"title": "%extension.runQuery%",
"category": "MS SQL"
2016-06-26 21:49:47 +03:00
},
{
"command": "extension.runCurrentStatement",
"title": "%extension.runCurrentStatement%",
"category": "MS SQL"
},
{
"command": "extension.cancelQuery",
"title": "%extension.cancelQuery%",
"category": "MS SQL"
},
2016-06-26 21:49:47 +03:00
{
"command": "extension.connect",
"title": "%extension.connect%",
"category": "MS SQL"
2016-06-26 21:49:47 +03:00
},
{
"command": "extension.disconnect",
"title": "%extension.disconnect%",
"category": "MS SQL"
},
{
"command": "extension.manageProfiles",
"title": "%extension.manageProfiles%",
"category": "MS SQL"
},
{
"command": "extension.chooseDatabase",
"title": "%extension.chooseDatabase%",
"category": "MS SQL"
},
{
"command": "extension.chooseLanguageFlavor",
"title": "%extension.chooseLanguageFlavor%",
"category": "MS SQL"
},
{
"command": "extension.showGettingStarted",
"title": "%extension.showGettingStarted%",
"category": "MS SQL"
},
{
"command": "extension.newQuery",
"title": "%extension.newQuery%",
"category": "MS SQL"
},
{
"command": "extension.rebuildIntelliSenseCache",
"title": "%extension.rebuildIntelliSenseCache%",
"category": "MS SQL"
},
{
"command": "extension.toggleSqlCmd",
"title": "%extension.toggleSqlCmd%",
"category": "MS SQL"
},
{
"command": "extension.addObjectExplorer",
"title": "%extension.addObjectExplorer%",
"category": "MS SQL",
"icon": {
"dark": "images/add_inverse.svg",
"light": "images/add.svg"
}
},
{
"command": "extension.objectExplorerNewQuery",
"title": "%extension.objectExplorerNewQuery%",
"category": "MS SQL"
},
{
"command": "extension.removeObjectExplorerNode",
"title": "%extension.removeObjectExplorerNode%",
"category": "MS SQL"
},
{
"command": "extension.refreshObjectExplorerNode",
"title": "%extension.refreshObjectExplorerNode%",
"category": "MS SQL"
},
{
"command": "extension.disconnectObjectExplorerNode",
"title": "%extension.disconnect%",
"category": "MS SQL"
},
{
"command": "extension.scriptSelect",
"title": "%extension.scriptSelect%",
"category": "MS SQL"
2016-06-26 21:49:47 +03:00
}
],
"keybindings": [
{
"command": "extension.runQuery",
"key": "ctrl+shift+e",
"mac": "cmd+shift+e",
"when": "editorTextFocus && editorLangId == 'sql'"
},
{
"command": "extension.connect",
"key": "ctrl+shift+c",
"mac": "cmd+shift+c",
"when": "editorTextFocus && editorLangId == 'sql'"
},
{
"command": "extension.disconnect",
"key": "ctrl+shift+d",
"mac": "cmd+shift+d",
"when": "editorTextFocus && editorLangId == 'sql'"
},
{
"command": "extension.addObjectExplorer",
"key": "ctrl+shift+o",
"mac": "cmd+shift+o",
"when": "enablePreviewFeatures && view == objectExplorer"
2016-06-26 21:49:47 +03:00
}
],
"configuration": {
"type": "object",
"title": "MSSQL configuration",
2016-07-14 02:25:29 +03:00
"properties": {
"mssql.logDebugInfo": {
2016-06-26 21:49:47 +03:00
"type": "boolean",
"default": false,
"description": "%mssql.logDebugInfo%",
"scope": "window"
2016-06-26 21:49:47 +03:00
},
"mssql.maxRecentConnections": {
"type": "number",
"default": 5,
"description": "%mssql.maxRecentConnections%",
"scope": "window"
},
"mssql.enablePreviewFeatures": {
"type": "boolean",
"default": false,
"description": "%mssql.enablePreviewFeatures%"
},
"mssql.connections": {
2016-06-26 21:49:47 +03:00
"type": "array",
2016-07-14 02:25:29 +03:00
"default": [
2016-06-26 21:49:47 +03:00
{
"server": "{{put-server-name-here}}",
"database": "{{put-database-name-here}}",
"user": "{{put-username-here}}",
"password": "{{put-password-here}}"
}
],
"description": "%mssql.connections%",
2016-07-14 02:25:29 +03:00
"items": {
2016-06-26 21:49:47 +03:00
"type": "object",
2016-07-14 02:25:29 +03:00
"properties": {
"server": {
2016-06-26 21:49:47 +03:00
"type": "string",
"default": "{{put-server-name-here}}",
"description": "%mssql.connection.server%"
2016-06-26 21:49:47 +03:00
},
2016-07-14 02:25:29 +03:00
"database": {
2016-06-26 21:49:47 +03:00
"type": "string",
"default": "{{put-database-name-here}}",
"description": "%mssql.connection.database%"
2016-06-26 21:49:47 +03:00
},
2016-07-14 02:25:29 +03:00
"user": {
2016-06-26 21:49:47 +03:00
"type": "string",
"default": "{{put-username-here}}",
"description": "%mssql.connection.user%"
},
2016-07-14 02:25:29 +03:00
"password": {
2016-06-26 21:49:47 +03:00
"type": "string",
"default": "{{put-password-here}}",
"description": "%mssql.connection.password%"
2016-06-26 21:49:47 +03:00
},
"authenticationType": {
"type": "string",
"default": "SqlLogin",
"enum": [
"Integrated",
"SqlLogin"
],
"description": "%mssql.connection.authenticationType%"
},
"port": {
"type": "number",
"default": 1433,
"description": "%mssql.connection.port%"
},
"encrypt": {
"type": "boolean",
"default": false,
"description": "%mssql.connection.encrypt%"
},
"trustServerCertificate": {
"type": "boolean",
"default": false,
"description": "%mssql.connection.trustServerCertificate%"
},
"persistSecurityInfo": {
"type": "boolean",
"default": false,
"description": "%mssql.connection.persistSecurityInfo%"
},
"connectTimeout": {
"type": "number",
"default": 15,
"description": "%mssql.connection.connectTimeout%"
},
"connectRetryCount": {
2016-06-26 21:49:47 +03:00
"type": "number",
"default": 1,
"description": "%mssql.connection.connectRetryCount%"
2016-06-26 21:49:47 +03:00
},
"connectRetryInterval": {
2016-06-26 21:49:47 +03:00
"type": "number",
"default": 10,
"description": "%mssql.connection.connectRetryInterval%"
},
"applicationName": {
"type": "string",
"default": "vscode-mssql",
"description": "%mssql.connection.applicationName%"
},
"workstationId": {
"type": "string",
"default": "",
"description": "%mssql.connection.workstationId%"
},
"applicationIntent": {
"type": "string",
"default": "ReadWrite",
"enum": [
"ReadWrite",
"ReadOnly"
],
"description": "%mssql.connection.applicationIntent%"
},
"currentLanguage": {
"type": "string",
"default": "",
"description": "%mssql.connection.currentLanguage%"
},
"pooling": {
"type": "boolean",
"default": false,
"description": "%mssql.connection.pooling%"
},
"maxPoolSize": {
"type": "number",
"default": 100,
"description": "%mssql.connection.maxPoolSize%"
},
"minPoolSize": {
"type": "number",
"default": 0,
"description": "%mssql.connection.minPoolSize%"
},
"loadBalanceTimeout": {
"type": "number",
"default": 0,
"description": "%mssql.connection.loadBalanceTimeout%"
},
"replication": {
"type": "boolean",
"default": true,
"description": "%mssql.connection.replication%"
},
"attachDbFilename": {
"type": "string",
"default": "",
"description": "%mssql.connection.attachDbFilename%"
},
"failoverPartner": {
"type": "string",
"default": "",
"description": "%mssql.connection.failoverPartner%"
},
"multiSubnetFailover": {
"type": "boolean",
"default": true,
"description": "%mssql.connection.multiSubnetFailover%"
},
"multipleActiveResultSets": {
"type": "boolean",
"default": false,
"description": "%mssql.connection.multipleActiveResultSets%"
},
"packetSize": {
"type": "number",
"default": 8192,
"description": "%mssql.connection.packetSize%"
},
"typeSystemVersion": {
"type": "string",
"enum": [
"Latest"
],
"description": "%mssql.connection.typeSystemVersion%"
},
"connectionString": {
"type": "string",
"default": "",
"description": "%mssql.connection.connectionString%"
},
"profileName": {
"type": "string",
"description": "%mssql.connection.profileName%"
},
"savePassword": {
"type": "boolean",
"description": "%mssql.connection.savePassword%"
},
"emptyPasswordInput": {
"type": "boolean",
"description": "%mssql.connection.emptyPasswordInput%"
2016-06-26 21:49:47 +03:00
}
}
},
"scope": "resource"
},
"mssql.shortcuts": {
"type": "object",
"description": "%mssql.shortcuts%",
"default": {
"_comment": "Short cuts must follow the format (ctrl)+(shift)+(alt)+[key]",
"event.toggleResultPane": "ctrl+alt+r",
"event.focusResultsGrid": "ctrl+alt+g",
"event.toggleMessagePane": "ctrl+alt+y",
"event.prevGrid": "ctrl+up",
"event.nextGrid": "ctrl+down",
"event.copySelection": "ctrl+c",
"event.copyWithHeaders": "",
"event.copyHeaders": "",
"event.maximizeGrid": "",
"event.selectAll": "",
"event.saveAsJSON": "",
"event.saveAsCSV": "",
"event.saveAsExcel": ""
},
"scope": "resource"
},
"mssql.messagesDefaultOpen": {
"type": "boolean",
"description": "%mssql.messagesDefaultOpen%",
"default": true,
"scope": "resource"
},
"mssql.resultsFontFamily": {
"type": "string",
"description": "%mssql.resultsFontFamily%",
"default": "-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif",
"scope": "resource"
},
"mssql.resultsFontSize": {
"type": "number",
"description": "%mssql.resultsFontSize%",
"default": 13,
"scope": "resource"
},
"mssql.saveAsCsv.includeHeaders": {
"type": "boolean",
"description": "%mssql.saveAsCsv.includeHeaders%",
"default": true,
"scope": "resource"
},
"mssql.saveAsCsv.delimiter": {
"type": "string",
"description": "%mssql.saveAsCsv.delimiter%",
"default": ",",
"scope": "resource"
},
"mssql.saveAsCsv.lineSeparator": {
"type": "string",
"description": "%mssql.saveAsCsv.lineSeparator%",
"default": null,
"scope": "resource"
},
"mssql.saveAsCsv.textIdentifier": {
"type": "string",
"description": "%mssql.saveAsCsv.textIdentifier%",
"default": "\"",
"scope": "resource"
},
"mssql.saveAsCsv.encoding": {
"type": "string",
"description": "%mssql.saveAsCsv.encoding%",
"default": "utf-8",
"scope": "resource"
},
"mssql.copyIncludeHeaders": {
"type": "boolean",
"description": "%mssql.copyIncludeHeaders%",
"default": false,
"scope": "resource"
},
"mssql.copyRemoveNewLine": {
"type": "boolean",
"description": "%mssql.copyRemoveNewLine%",
"default": true,
"scope": "resource"
},
"mssql.showBatchTime": {
"type": "boolean",
"description": "%mssql.showBatchTime%",
"default": false,
"scope": "resource"
},
"mssql.splitPaneSelection": {
"type": "string",
"description": "%mssql.splitPaneSelection%",
"default": "next",
"enum": [
"next",
"current",
"end"
],
"scope": "resource"
},
"mssql.format.alignColumnDefinitionsInColumns": {
"type": "boolean",
"description": "%mssql.format.alignColumnDefinitionsInColumns%",
"default": false,
"scope": "window"
},
"mssql.format.datatypeCasing": {
"type": "string",
"description": "%mssql.format.datatypeCasing%",
"default": "none",
"enum": [
"none",
"uppercase",
"lowercase"
],
"scope": "window"
},
"mssql.format.keywordCasing": {
"type": "string",
"description": "%mssql.format.keywordCasing%",
"default": "none",
"enum": [
"none",
"uppercase",
"lowercase"
],
"scope": "window"
},
"mssql.format.placeCommasBeforeNextStatement": {
"type": "boolean",
"description": "%mssql.format.placeCommasBeforeNextStatement%",
"default": false,
"scope": "window"
},
"mssql.format.placeSelectStatementReferencesOnNewLine": {
"type": "boolean",
"description": "%mssql.format.placeSelectStatementReferencesOnNewLine%",
"default": false,
"scope": "window"
},
"mssql.applyLocalization": {
"type": "boolean",
"description": "%mssql.applyLocalization%",
"default": false,
"scope": "window"
},
"mssql.query.displayBitAsNumber": {
"type": "boolean",
"default": true,
"description": "%mssql.query.displayBitAsNumber%",
"scope": "window"
},
"mssql.intelliSense.enableIntelliSense": {
"type": "boolean",
"default": true,
"description": "%mssql.intelliSense.enableIntelliSense%",
"scope": "window"
},
"mssql.intelliSense.enableErrorChecking": {
"type": "boolean",
"default": true,
"description": "%mssql.intelliSense.enableErrorChecking%",
"scope": "window"
},
"mssql.intelliSense.enableSuggestions": {
"type": "boolean",
"default": true,
"description": "%mssql.intelliSense.enableSuggestions%",
"scope": "window"
},
"mssql.intelliSense.enableQuickInfo": {
"type": "boolean",
"default": true,
"description": "%mssql.intelliSense.enableQuickInfo%",
"scope": "window"
},
"mssql.intelliSense.lowerCaseSuggestions": {
"type": "boolean",
"default": false,
"description": "%mssql.intelliSense.lowerCaseSuggestions%",
"scope": "window"
},
"mssql.persistQueryResultTabs": {
"type": "boolean",
"default": false,
"description": "%mssql.persistQueryResultTabs%",
"scope": "window"
2016-06-26 21:49:47 +03:00
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
2016-06-26 21:49:47 +03:00
}
}