Skip to content

Commit

Permalink
chore: disable hovers [IDE-390]
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiandoetsch committed Oct 30, 2024
1 parent 6df53b6 commit 85b18bc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/snyk/common/languageServer/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export type ServerSettings = {
enableDeltaFindings?: string;
folderConfigs: FolderConfig[];
enableSnykOSSQuickFixCodeActions: string;
hoverVerbosity: number;
};

export class LanguageServerSettings {
Expand Down Expand Up @@ -86,6 +87,7 @@ export class LanguageServerSettings {
requiredProtocolVersion: `${PROTOCOL_VERSION}`,
folderConfigs: configuration.getFolderConfigs(),
enableSnykOSSQuickFixCodeActions: `${configuration.getPreviewFeatures().ossQuickfixes}`,
hoverVerbosity: 1

Check failure on line 90 in src/snyk/common/languageServer/settings.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Insert `,`

Check failure on line 90 in src/snyk/common/languageServer/settings.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-latest)

Insert `,`
};
}
}

0 comments on commit 85b18bc

Please sign in to comment.