fix lint warning (#224996)

* fix lint warning

* fix path
pull/225071/head
Aaron Munger 2024-08-07 09:05:38 -07:00 committed by GitHub
parent 3fc6de2ce6
commit b5300cb68d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -561,6 +561,10 @@
{
"name": "vs/workbench/contrib/authentication",
"project": "vscode-workbench"
},
{
"name": "vs/workbench/contrib/replNotebook",
"project": "vscode-workbench"
}
]
}

View File

@ -7,7 +7,6 @@ import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors';
import { Registry } from 'vs/platform/registry/common/platform';
import { EditorPaneDescriptor, IEditorPaneRegistry } from 'vs/workbench/browser/editor';
import { EditorExtensions, IEditorFactoryRegistry, IEditorSerializer, IUntypedEditorInput } from 'vs/workbench/common/editor';
// is one contrib allowed to import from another?
import { parse } from 'vs/base/common/marshalling';
import { assertType } from 'vs/base/common/types';
import { URI } from 'vs/base/common/uri';
@ -24,7 +23,6 @@ import { IWorkingCopyIdentifier } from 'vs/workbench/services/workingCopy/common
import { IWorkingCopyEditorHandler, IWorkingCopyEditorService } from 'vs/workbench/services/workingCopy/common/workingCopyEditorService';
import { extname, isEqual } from 'vs/base/common/resources';
import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookService';
// eslint-disable-next-line local/code-translation-remind
import { localize2 } from 'vs/nls';
import { Action2, registerAction2 } from 'vs/platform/actions/common/actions';
import { IEditorResolverService, RegisteredEditorPriority } from 'vs/workbench/services/editor/common/editorResolverService';

View File

@ -4,7 +4,6 @@
*--------------------------------------------------------------------------------------------*/
import 'vs/css!./media/interactive';
// eslint-disable-next-line local/code-translation-remind
import * as nls from 'vs/nls';
import * as DOM from 'vs/base/browser/dom';
import { CancellationToken } from 'vs/base/common/cancellation';