b4964bcf35
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 |
||
---|---|---|
.. | ||
schemas | ||
src | ||
.vscodeignore | ||
README.md | ||
cgmanifest.json | ||
extension.webpack.config.js | ||
icon.png | ||
language-configuration.json | ||
package.json | ||
package.nls.json | ||
tsconfig.json | ||
yarn.lock |
README.md
Language Features for Typescript and Javascript files
Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
Features
See Typescript in Visual Studio Code and Javascript in Visual Studio Code to learn about the features of this extension.