File tree Expand file tree Collapse file tree
src/vs/platform/diagnostics/node Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -538,15 +538,11 @@ export class DiagnosticsService implements IDiagnosticsService {
538538 if ( folderUri . scheme === 'file' ) {
539539 const folder = folderUri . fsPath ;
540540 collectWorkspaceStats ( folder , [ 'node_modules' , '.git' ] ) . then ( stats => {
541- type WorkspaceStatItemClassification = {
542- name : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' } ;
543- count : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' , isMeasurement : true } ;
544- } ;
545541 type WorkspaceStatsClassification = {
546542 'workspace.id' : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' } ;
547- fileTypes : WorkspaceStatItemClassification ;
548- configTypes : WorkspaceStatItemClassification ;
549- launchConfigs : WorkspaceStatItemClassification ;
543+ fileTypes : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' , isMeasurement : true } ;
544+ configTypes : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' , isMeasurement : true } ;
545+ launchConfigs : { classification : 'SystemMetaData' , purpose : 'FeatureInsight' , isMeasurement : true } ;
550546 } ;
551547 type WorkspaceStatsEvent = {
552548 'workspace.id' : string | undefined ;
You can’t perform that action at this time.
0 commit comments