mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 08:08:39 +01:00
Replaces many loops of the form:
```js
for (let i = 0; i < elements.length; ++i) {
const i = elements[i];
...
}
```
with:
```js
for (const element of elements) {
...
}
```
Mix of a horrible regex based find/replace and manual touch ups
Language Features for HTML
Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
Features
See HTML in Visual Studio Code to learn about the features of this extension.
Please read the CONTRIBUTING.md file to learn how to contribute to this extension.