mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391
This commit is contained in:
@@ -82,7 +82,7 @@ export class TestFS implements vscode.FileSystemProvider {
|
||||
throw vscode.FileSystemError.FileNotFound();
|
||||
}
|
||||
|
||||
writeFile(uri: vscode.Uri, content: Uint8Array, options: { create: boolean, overwrite: boolean }): void {
|
||||
writeFile(uri: vscode.Uri, content: Uint8Array, options: { create: boolean; overwrite: boolean }): void {
|
||||
let basename = path.posix.basename(uri.path);
|
||||
let parent = this._lookupParentDirectory(uri);
|
||||
let entry = parent.entries.get(basename);
|
||||
|
||||
@@ -347,7 +347,7 @@ import { assertNoRpc, poll } from '../utils';
|
||||
suite('window.onDidWriteTerminalData', () => {
|
||||
test('should listen to all future terminal data events', (done) => {
|
||||
const openEvents: string[] = [];
|
||||
const dataEvents: { name: string, data: string }[] = [];
|
||||
const dataEvents: { name: string; data: string }[] = [];
|
||||
const closeEvents: string[] = [];
|
||||
disposables.push(window.onDidOpenTerminal(e => openEvents.push(e.name)));
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ suite('vscode API - workspace-watcher', () => {
|
||||
|
||||
interface IWatchRequest {
|
||||
uri: vscode.Uri;
|
||||
options: { recursive: boolean; excludes: string[] }
|
||||
options: { recursive: boolean; excludes: string[] };
|
||||
}
|
||||
|
||||
class WatcherTestFs extends TestFS {
|
||||
|
||||
Reference in New Issue
Block a user