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 |
||
---|---|---|
.. | ||
resources/icons | ||
src | ||
.vscodeignore | ||
README.md | ||
extension.webpack.config.js | ||
package.json | ||
package.nls.json | ||
tsconfig.json | ||
yarn.lock |
README.md
Merge Conflict
Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
Features
See Merge Conflicts in VS Code to learn about features of this extension.