vscode-jupyter/.vscodeignore

115 строки
2.3 KiB
Plaintext
Исходник Обычный вид История

2016-01-19 13:58:51 +03:00
**/*.map
**/*.analyzer.html
!out/webviews/webview-side/common/node_modules/**/*
images/**
docs/**
*.vsix
2018-04-05 22:35:01 +03:00
.appveyor.yml
.editorconfig
.env
.eslintrc
.gitattributes
2018-04-05 22:35:01 +03:00
.gitignore
.gitmodules
.huskyrc.json
.npmrc
.nvmrc
.nycrc
2016-06-17 17:59:22 +03:00
.travis.yml
CODE_OF_CONDUCT.md
CODING_STANDARDS.md
CONTRIBUTING.md
CONTRIBUTING - LANGUAGE SERVER.md
2018-04-05 22:35:01 +03:00
coverconfig.json
cucumber-report.json
2018-04-05 22:35:01 +03:00
gulpfile.js
package.webviews/webview-side.dependencies.json
package-lock.json
VS Python analysis engine integration (#1231) * Undo changes * Test fixes * Increase timeout * Remove double event listening * Remove test * Revert "Remove test" This reverts commit e240c3fd117c38b9e6fdcbdd1ba2715789fefe48. * Revert "Remove double event listening" This reverts commit af573be27372a79d5589e2134002cc753bb54f2a. * Undo changes * Test fixes * .NET Core check * Better find dotnet * Fix pip test * Linting tests * Undo accidental changes * Add clone and build PTVS * Appveyor PTVS build * Fix slashes * Enable build * Try absolute path * Fix xcopy switch * Activate Analysis Engine test on Appveyor * Temporary only run new tests * Disable PEP hint tests * Test fix * Disable appveyor build and tests for PTVS for now * Remove analysis engine test from the set * Remove VS image for now * Build/sign VSXI project * Run vsce from cmd * Rename * Abs path vsce * Path * Move project * Ignore publishing project * Try csproj * Add framework * Ignore build output folder * Package before build * Try batch instead of PS * Fix path quotes * #1096 The if statement is automatically formatted incorrectly * Merge fix * Add more tests * More tests * Typo * Test * Also better handle multiline arguments * Changes lost on squash * More lost changes * Restore Jedi/PTVS setting * Update tests to new PTVS * Signature tests * Add PTVS tests task * Analysis Engine contribution * Add Mac/Linux info * Disable csproj build * Add unzip to dependencies * Minor fixes to doc * Change setting type to bool * Report progress on status bar * Simplify * CR feedback * Fix launching fx-independent code on Mac/Linux * Add title
2018-03-30 23:44:07 +03:00
packageExtension.cmd
pvsc-dev-ext.py
pvsc.code-workspace
PYTHON_INTERACTIVE_TROUBLESHOOTING.md
requirements.in
sprint-planning.github-issues
test.ipynb
travis*.log
2018-11-28 23:43:20 +03:00
tsconfig*.json
2018-04-05 22:35:01 +03:00
tsfmt.json
.eslintrc.js
2018-04-05 22:35:01 +03:00
typings.json
vsc-extension-quickstart.md
2018-04-05 22:35:01 +03:00
vscode-python-signing.*
webpack.config.js
webpack.datascience-*.config.js
2018-04-05 22:35:01 +03:00
.devcontainer/**
2018-04-05 22:35:01 +03:00
.github/**
.mocha-reporter/**
2018-04-05 22:35:01 +03:00
.nvm/**
.nyc_output
.prettierrc.js
Update main after release (#4860) * PORT Variable view icon to release branch (#4748) * update changelog (#4752) * Cherry pick change for icon overflow (#4753) * Change number of icons in notebook toolbar (#4747) * Fix icons * Have trust command show up and nothing else if untrusted * Add trust check to all commands * Update based on discussion * Update change log * PORT - variable context (#4770) * Add new editor context for just if native notebook is active (#4762) * update news Co-authored-by: Ian Huff <ianhuff@LICHYOGAIOT.northamerica.corp.microsoft.com> * Port control enter fix to release (#4774) * Fix ctrl+enter and alt+enter by removing the redundant command. (#4769) * Fix ctrl+enter and alt+enter by removing the redundant command. * Code review feedback * Update changelog * port .NET fix to release (#4776) * Fix .NET interactive to always use native (#4772) * Fix .NET interactive * Fix tests and linter * Update changelog * Port kernel finder change to release (#4799) * Fix duplicate kernel generation (#4790) * Fix duplicate kernel generation * Fix functional tests * Update changelog * Actually use stable * PORT - Port document dispose fix to release. (#4798) * Only clean up editors on close not on Panel dispose (#4787) * update changelog Co-authored-by: Ian Huff <ianhuff@LICHYOGAIOT.northamerica.corp.microsoft.com> * Port surveys (#4804) * Refactor surveys and add a new one (#4794) * Refactor surveys and add a new one * add news and lint * lint * lint * PR comments * update changelog * Fix IJupyterExtensionBanner service identifier (#4825) Co-authored-by: Joyce Er <joyceerhuiling@gmail.com> * PORT - Fix for top level save and undo commands (#4851) * Update cache ignore * Actually ignore .so files * Update release plan * Put back package.json changes * Delete news entries Co-authored-by: Ian Huff <ianhu@microsoft.com> Co-authored-by: David Kutugata <dakutuga@microsoft.com> Co-authored-by: Ian Huff <ianhuff@LICHYOGAIOT.northamerica.corp.microsoft.com> Co-authored-by: Joyce Er <joyceerhuiling@gmail.com>
2021-02-18 20:27:07 +03:00
.*ignore
2021-02-20 04:44:21 +03:00
**/*.so
.sonarcloud.properties
2018-10-04 21:35:40 +03:00
.venv/**
2018-04-05 22:35:01 +03:00
.vscode/**
.vscode-test/**
.vscode-test-web/**
.vscode test/**
languageServer/**
languageServer.*/**
nodeLanguageServer/**
nodeLanguageServer.*/**
VS Python analysis engine integration (#1231) * Undo changes * Test fixes * Increase timeout * Remove double event listening * Remove test * Revert "Remove test" This reverts commit e240c3fd117c38b9e6fdcbdd1ba2715789fefe48. * Revert "Remove double event listening" This reverts commit af573be27372a79d5589e2134002cc753bb54f2a. * Undo changes * Test fixes * .NET Core check * Better find dotnet * Fix pip test * Linting tests * Undo accidental changes * Add clone and build PTVS * Appveyor PTVS build * Fix slashes * Enable build * Try absolute path * Fix xcopy switch * Activate Analysis Engine test on Appveyor * Temporary only run new tests * Disable PEP hint tests * Test fix * Disable appveyor build and tests for PTVS for now * Remove analysis engine test from the set * Remove VS image for now * Build/sign VSXI project * Run vsce from cmd * Rename * Abs path vsce * Path * Move project * Ignore publishing project * Try csproj * Add framework * Ignore build output folder * Package before build * Try batch instead of PS * Fix path quotes * #1096 The if statement is automatically formatted incorrectly * Merge fix * Add more tests * More tests * Typo * Test * Also better handle multiline arguments * Changes lost on squash * More lost changes * Restore Jedi/PTVS setting * Update tests to new PTVS * Signature tests * Add PTVS tests task * Analysis Engine contribution * Add Mac/Linux info * Disable csproj build * Add unzip to dependencies * Minor fixes to doc * Change setting type to bool * Report progress on status bar * Simplify * CR feedback * Fix launching fx-independent code on Mac/Linux * Add title
2018-03-30 23:44:07 +03:00
bin/**
build/**
VS Python analysis engine integration (#1231) * Undo changes * Test fixes * Increase timeout * Remove double event listening * Remove test * Revert "Remove test" This reverts commit e240c3fd117c38b9e6fdcbdd1ba2715789fefe48. * Revert "Remove double event listening" This reverts commit af573be27372a79d5589e2134002cc753bb54f2a. * Undo changes * Test fixes * .NET Core check * Better find dotnet * Fix pip test * Linting tests * Undo accidental changes * Add clone and build PTVS * Appveyor PTVS build * Fix slashes * Enable build * Try absolute path * Fix xcopy switch * Activate Analysis Engine test on Appveyor * Temporary only run new tests * Disable PEP hint tests * Test fix * Disable appveyor build and tests for PTVS for now * Remove analysis engine test from the set * Remove VS image for now * Build/sign VSXI project * Run vsce from cmd * Rename * Abs path vsce * Path * Move project * Ignore publishing project * Try csproj * Add framework * Ignore build output folder * Package before build * Try batch instead of PS * Fix path quotes * #1096 The if statement is automatically formatted incorrectly * Merge fix * Add more tests * More tests * Typo * Test * Also better handle multiline arguments * Changes lost on squash * More lost changes * Restore Jedi/PTVS setting * Update tests to new PTVS * Signature tests * Add PTVS tests task * Analysis Engine contribution * Add Mac/Linux info * Disable csproj build * Add unzip to dependencies * Minor fixes to doc * Change setting type to bool * Report progress on status bar * Simplify * CR feedback * Fix launching fx-independent code on Mac/Linux * Add title
2018-03-30 23:44:07 +03:00
BuildOutput/**
2018-04-05 22:35:01 +03:00
coverage/**
data/**
2018-04-05 22:35:01 +03:00
debug_coverage*/**
images/**/*.gif
images/**/*.png
ipywidgets/**
Localize using vscode-nls (#10361) * wip * all the API changes in localize.ts, I believe * some of the file changes * wip * reinstating the .nls.*.json files * kernel entries and other stuff * typos * Notebook Renderers * wip * webpack fixes * changing the signature of localize, to match how webpack will replace it * package.nls.json * I do not think vscode-nls-dev actually works with localize( as a string, but only with the message string. Also, vscode-nls config * restoring jupyter.runallcells.title * fixed mistake in CLI command * restoring jupyter.runallcellsabove.title * restoring jupyter.runcellandallbelow.title * restoring jupyter.selectjupyteruri.title * fixing mistakes made by bad automation * more improvements * this change was unnecessary * [Buildable PR copy] Localize using vscode-nls (#10382) * wip * all the API changes in localize.ts, I believe * some of the file changes * wip * reinstating the .nls.*.json files * kernel entries and other stuff * typos * Notebook Renderers * wip * webpack fixes * changing the signature of localize, to match how webpack will replace it * package.nls.json * I do not think vscode-nls-dev actually works with localize( as a string, but only with the message string. Also, vscode-nls config * restoring jupyter.runallcells.title * fixed mistake in CLI command * restoring jupyter.runallcellsabove.title * restoring jupyter.runcellandallbelow.title * restoring jupyter.selectjupyteruri.title * fixing mistakes made by bad automation * more improvements * this change was unnecessary * using the standard localize function directly * Using the standard localize function directly (#10383) * using the standard localize function directly * conditional easier to the eyes * an idea * an idea (#10395) * Fixing bundle destination paths (#10403) * fixed webpack (#10406) * moving the webpack config around (#10407) * restoring the webpack step to be the first, this time with __dirname (#10408) * returning to the old base file approach, but adding an exception on the .vscodeignore (#10411) * Also allowing nls.metadata.header.json (#10412) * adding the whole src to see if that makes a difference (#10414) * Exception in .vscodeignore for nls.bundle.*.json (#10415) * test without clean (#10421) * Localization-tolerant gulp clean (#10423) * Localization-tolerant gulp clean * a bit more general * much cleaner * Better nls.*.json regexes (#10425) * better comment * package.nls.json now has object values -- this fixes localization in the browser * test fix * small changes for consistency * consistent quotes * undoing some unnecessary change * This could be the fix * some polishes that seemed reasonable to me Co-authored-by: Tyler James Leonhardt <me@tylerleonhardt.com>
2022-06-13 19:27:18 +03:00
i18n/**
2018-04-05 22:35:01 +03:00
news/**
node_modules/**
2018-04-05 22:35:01 +03:00
obj/**
out/**/*.stats.json
out/**/*.analyzer.html
2018-04-05 22:35:01 +03:00
out/coverconfig.json
out/webviews/webview-side/**/*.analyzer.html
out/webviews/webview-side/common/**
out/webviews/webview-side/**/*.js.LICENSE
out/webviews/webview-side/data-explorer/**
out/webviews/webview-side/webviews/webview-side/**
out/webviews/webview-side/history-react/**
out/webviews/webview-side/interactive-common/**
out/webviews/webview-side/ipywidgets/**
out/webviews/webview-side/native-editor/**
out/webviews/webview-side/notebook/webviews/webview-side/**
out/webviews/webview-side/notebook/ipywidgets/**
out/webviews/webview-side/notebook/index.*.html
out/webviews/webview-side/plot/**
out/webviews/webview-side/react-common/**
out/webviews/webview-side/viewers/webviews/webview-side/**
out/webviews/webview-side/viewers/ipywidgets/**
out/webviews/webview-side/viewers/index.*.html
out/webviews/webview-side/widgetTester/**
2018-04-05 22:35:01 +03:00
out/pythonFiles/**
out/src/**
out/test/**
precommit.hook
2018-04-05 22:35:01 +03:00
pythonFiles/**/*.pyc
pythonFiles/lib/**/*.dist-info/**
pythonFiles/lib/**/*.egg-info/**
pythonFiles/lib/python/bin/**
pythonFiles/lib/python/debugpy/**
pythonFiles/tests/**
2018-04-05 22:35:01 +03:00
scripts/**
src/**
test/**
tmp/**
2018-04-05 22:35:01 +03:00
typings/**
types/**
test-results*
2021-02-20 04:44:21 +03:00
*.zip
Localize using vscode-nls (#10361) * wip * all the API changes in localize.ts, I believe * some of the file changes * wip * reinstating the .nls.*.json files * kernel entries and other stuff * typos * Notebook Renderers * wip * webpack fixes * changing the signature of localize, to match how webpack will replace it * package.nls.json * I do not think vscode-nls-dev actually works with localize( as a string, but only with the message string. Also, vscode-nls config * restoring jupyter.runallcells.title * fixed mistake in CLI command * restoring jupyter.runallcellsabove.title * restoring jupyter.runcellandallbelow.title * restoring jupyter.selectjupyteruri.title * fixing mistakes made by bad automation * more improvements * this change was unnecessary * [Buildable PR copy] Localize using vscode-nls (#10382) * wip * all the API changes in localize.ts, I believe * some of the file changes * wip * reinstating the .nls.*.json files * kernel entries and other stuff * typos * Notebook Renderers * wip * webpack fixes * changing the signature of localize, to match how webpack will replace it * package.nls.json * I do not think vscode-nls-dev actually works with localize( as a string, but only with the message string. Also, vscode-nls config * restoring jupyter.runallcells.title * fixed mistake in CLI command * restoring jupyter.runallcellsabove.title * restoring jupyter.runcellandallbelow.title * restoring jupyter.selectjupyteruri.title * fixing mistakes made by bad automation * more improvements * this change was unnecessary * using the standard localize function directly * Using the standard localize function directly (#10383) * using the standard localize function directly * conditional easier to the eyes * an idea * an idea (#10395) * Fixing bundle destination paths (#10403) * fixed webpack (#10406) * moving the webpack config around (#10407) * restoring the webpack step to be the first, this time with __dirname (#10408) * returning to the old base file approach, but adding an exception on the .vscodeignore (#10411) * Also allowing nls.metadata.header.json (#10412) * adding the whole src to see if that makes a difference (#10414) * Exception in .vscodeignore for nls.bundle.*.json (#10415) * test without clean (#10421) * Localization-tolerant gulp clean (#10423) * Localization-tolerant gulp clean * a bit more general * much cleaner * Better nls.*.json regexes (#10425) * better comment * package.nls.json now has object values -- this fixes localization in the browser * test fix * small changes for consistency * consistent quotes * undoing some unnecessary change * This could be the fix * some polishes that seemed reasonable to me Co-authored-by: Tyler James Leonhardt <me@tylerleonhardt.com>
2022-06-13 19:27:18 +03:00
!**/*nls.*.json