enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391

This commit is contained in:
Johannes Rieken
2022-02-02 14:34:41 +01:00
parent 5abc4e0071
commit 4a130c40ed
954 changed files with 3017 additions and 3016 deletions

View File

@@ -383,7 +383,7 @@ export interface IStartupMetrics {
readonly totalmem?: number;
readonly freemem?: number;
readonly meminfo?: IMemoryInfo;
readonly cpus?: { count: number; speed: number; model: string; };
readonly cpus?: { count: number; speed: number; model: string };
readonly loadavg?: number[];
}
@@ -526,12 +526,12 @@ export abstract class AbstractTimerService implements ITimerService {
// event and it is "normalized" to a relative timestamp where the first mark
// defines the start
for (const [source, marks] of this.getPerformanceMarks()) {
type Mark = { source: string; name: string; relativeStartTime: number; startTime: number; };
type Mark = { source: string; name: string; relativeStartTime: number; startTime: number };
type MarkClassification = {
source: { classification: 'SystemMetaData', purpose: 'PerformanceAndHealth'; },
name: { classification: 'SystemMetaData', purpose: 'PerformanceAndHealth'; },
relativeStartTime: { classification: 'SystemMetaData', purpose: 'PerformanceAndHealth', isMeasurement: true; },
startTime: { classification: 'SystemMetaData', purpose: 'PerformanceAndHealth', isMeasurement: true; },
source: { classification: 'SystemMetaData'; purpose: 'PerformanceAndHealth' };
name: { classification: 'SystemMetaData'; purpose: 'PerformanceAndHealth' };
relativeStartTime: { classification: 'SystemMetaData'; purpose: 'PerformanceAndHealth'; isMeasurement: true };
startTime: { classification: 'SystemMetaData'; purpose: 'PerformanceAndHealth'; isMeasurement: true };
};
let lastMark: perf.PerformanceMark = marks[0];