Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 0 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const eolFilter = [
'!.npmrc',
'!.vscodeignore',
'!LICENSE',
'!webpack.config.js',
'!**/node_modules/**',
'!**/*.{svg,exe,png,bmp,scpt,bat,cmd,cur,ttf,woff,eot,txt,md,json,yml}',
'!out/**/*',
Expand All @@ -61,7 +60,6 @@ const indentationFilter = [
const tslintFilter = [
'src/**/*.ts',
'test/**/*.ts',
'!webpack.config.js',
'!**/node_modules/**',
'!out/**/*',
'!images/**/*',
Expand Down
49 changes: 3 additions & 46 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -850,12 +850,6 @@
"type": "object",
"title": "Python Configuration",
"properties": {
"python.promptToInstallJupyter": {
"type": "boolean",
"default": true,
"description": "Display prompt to install Jupyter Extension.",
"scope": "resource"
},
"python.pythonPath": {
"type": "string",
"default": "python",
Expand Down Expand Up @@ -1470,29 +1464,6 @@
"default": [],
"description": "Python launch arguments to use when executing a file in the terminal.",
"scope": "resource"
},
"python.jupyter.appendResults": {
"type": "boolean",
"default": true,
"description": "Whether to appen the results to results window, else clear and display.",
"scope": "resource"
},
"python.jupyter.defaultKernel": {
"type": "string",
"default": "",
"description": "Default kernel to be used. By default the first available kernel is used.",
"scope": "resource"
},
"python.jupyter.startupCode": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"%matplotlib inline"
],
"description": "Code executed when the kernel starts. Such as the default of '%matplotlib inline'. Individual lines can be placed in separate items of the array.",
"scope": "resource"
}
}
},
Expand Down Expand Up @@ -1556,8 +1527,8 @@
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./ && webpack",
"compile": "webpack && tsc -watch -p ./",
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./out/test/standardTest.js && node ./out/test/multiRootTest.js",
"precommit": "node gulpfile.js",
Expand All @@ -1573,9 +1544,7 @@
"lodash": "^4.17.4",
"minimatch": "^3.0.3",
"named-js-regexp": "^1.3.1",
"rx": "^4.1.0",
"semver": "^5.4.1",
"socket.io": "^1.4.8",
"tmp": "0.0.29",
"tree-kill": "^1.1.0",
"uint64be": "^1.0.1",
Expand All @@ -1593,21 +1562,14 @@
"@types/chai-as-promised": "^7.1.0",
"@types/fs-extra": "^4.0.2",
"@types/get-port": "^3.2.0",
"@types/jquery": "^1.10.31",
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.43",
"@types/node": "^6.0.40",
"@types/rx": "^2.5.33",
"@types/semver": "^5.4.0",
"@types/sinon": "^2.3.2",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.27",
"@types/uuid": "^3.3.27",
"@types/winreg": "^1.2.30",
"@types/xml2js": "^0.4.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"event-stream": "^3.3.4",
Expand All @@ -1616,20 +1578,15 @@
"gulp-typescript": "^3.2.2",
"gulp-watch": "^4.3.11",
"husky": "^0.14.3",
"ignore-loader": "^0.1.1",
"mocha": "^2.3.3",
"relative": "^3.0.2",
"retyped-diff-match-patch-tsd-ambient": "^1.0.0-0",
"sinon": "^2.3.6",
"transformime": "^3.1.2",
"transformime-marked": "0.0.1",
"ts-loader": "^2.3.4",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.5.2",
"typescript-formatter": "^6.0.0",
"vscode": "^1.1.5",
"webpack": "^1.13.2"
"vscode": "^1.1.5"
}
}
Loading