Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

15 рядки
494 B

6 роки тому
  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. }