js3-mode icon indicating copy to clipboard operation
js3-mode copied to clipboard

A chimeric fork of js2-mode and js-mode

Results 23 js3-mode issues
Sort by recently updated
recently updated
newest added

For JS files in excess of 100k characters, indenting a line can take a few seconds. The interim solution is to keep your js files shorter than about 5k lines...

Bug
Next-version

Consider the following piece of javascript, which could be quiet common in an express.js node application: ``` javascript function router(app) { app.post("/some/route", function (req, res, next) { next(); }); //...

Bug
Next-version

It seems function-literal indentation is not properly handled in some cases. Examples include function-literals in arrays, and assignment to the result of a function call with a function-literal argument: ```...