Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

15 rindas
494 B

  1. import { ConfigurationTarget } from 'vscode';
  2. import { configuration } from '../configuration';
  3. import type { Container } from '../container';
  4. import { command, Command, Commands } from './common';
  5. @command()
  6. export class ResetSuppressedWarningsCommand extends Command {
  7. constructor(private readonly container: Container) {
  8. super(Commands.ResetSuppressedWarnings);
  9. }
  10. async execute() {
  11. void (await configuration.update('advanced.messages', undefined, ConfigurationTarget.Global));
  12. }
  13. }