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
18 changes: 3 additions & 15 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,8 @@ MIT License

Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
676 changes: 69 additions & 607 deletions LICENSE-THIRD-PARTY

Large diffs are not rendered by default.

33 changes: 27 additions & 6 deletions ignored-errors/common-ignored-errors.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
{
"stringPatterns": [
"Error that can be ignored - string"
],
"regexPatterns": [
"Error that can be ignored - regex pattern"
]
// Use a JSONC parser to support syntax highlighting for this file.
// The comments are for reference and will be stripped out during build time.
"stringPatterns": [
// Normal webview initialization checking if a service worker is already controlling the page.
"No service worker controller found. Waiting for controllerchange.",
// getKeyValues is called after close() has been called on the database, the transaction is aborted, or temporary performance issue
"IndexedDB getKeyValues(): Connection is closing.",
"IndexedDB getKeyValues(): The transaction was aborted, so the request cannot be fulfilled.",
"IndexedDB getKeyValues(): Database deleted by request of the user",
"IndexedDB getKeyValues(): Transaction timed out due to inactivity.",
// Private browser does not support service workers
"TypeError: navigator.serviceWorker is undefined",
"Error: Service Workers are not enabled. Webviews will not work. Try disabling private/incognito mode."
],
"regexPatterns": [
// Error shows up for embedded VSCode hosted in an iFrame
"An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute can (?:remove|escape) its sandboxing\\.",
// Async extension host disconnect and disposal is not supported on browser
"\\[lifecycle\\] Long running operations during shutdown are unsupported in the web \\(id: join\\.stopExtensionHosts\\)",
// When switching to another tab from 'Code' tab when Code OSS is hosted in an iFrame. There are promises waiting to do work inside code editor iframes,
// but as we switch away the iframe is gone. Because of the hanging promise on 'Code' tab that we already move away from, we ignore related errors
"Error: Trying to add a disposable to a Disposable.+ that has already been disposed of. The added object will be leaked!",
// tab/page navigation can lead to the IndexedDB connection and transactions becoming invalid.
"Failed to execute 'abort' on 'IDBTransaction': The transaction has finished\\.",
// Failed to fetch JSON configuration file for syntax highlighting in Code OSS loaded from TangerineBox CDN
"(?=.*Unable to load and parse grammar for scope).*"
]
}
Loading