Skip to content

spkane/vscode-training-tweaks

Repository files navigation

training-tweaks README

This is a very simple Visual Studio Code extension that sets a few user settings at startup which we can't preset in open-vscodeserver without recompiling the server.

Features

This will set the following user settings at startup:

{
  "update.mode": "none",
  "telemetry.telemetryLevel": "off"
  "extensions.autoCheckUpdates": false,
  "extensions.autoUpdate": false
}

Requirements

There are no special requirements for this extension.

Known Issues

Setting update.mode to none officially requires a restart of Visual Studio Code and therefore may not really achieve much initially.

Packaging

npm install -g vsce
vsce package
  • Upload to a new Github release

Release Notes

0.0.3

Minor update to fix a security issue in an underlying npm dependency.

0.0.2

Minor update to fix a security issue in an underlying npm dependency.

0.0.1

Initial release of training-tweaks